Followers

Followers are users who have engaged with your board or are tracking specific Ideas or Announcements for updates. These users are often referred to as tracked users

Follower object

Followers have the following fields

Field
Details

idx string

A unique identifier for the follower

name string

Name of the follower

avatar number

Profile image of the follower (URL)

email number

Email address

created_at number

Date the follower was created

updated_at number

Date the follower was last updated

Endpoints

You can use the following endpoints to manage Topics

List followers

List followers

get

Returns a list of followers

Authorizations
AuthorizationstringRequired

API key in Authorization header with Bearer prefix (recommended)

Query parameters
limitintegerOptional

Limits the number of items on a page

Default: 20
afterstringOptional

The after cursor - used for pagination

include_attributesbooleanOptional

Include custom attributes in the response

Responses
200

Successfully returned a list of followers

application/json
get
/followers

Search for a follower

get

Search for followers by email

Authorizations
AuthorizationstringRequired

API key in Authorization header with Bearer prefix (recommended)

Query parameters
emailstringRequired
include_attributesbooleanOptional

Include custom attributes in the response

Responses
200

Successfully returned a list of followers

application/json
get
/followers/search

Create Follower

Create a follower

post

Create a new follower

Authorizations
AuthorizationstringRequired

API key in Authorization header with Bearer prefix (recommended)

Body
namestringRequired

Name of the follower

Example: John Smith
emailstringRequired

Email address of the follower

Example: [email protected]
attributesobjectOptional

Custom attributes for the follower (key-value pairs)

Example: {"job_title":"Product Manager","birth_date":"1990-05-15","department":"Engineering"}
Responses
200

Successfully created a new follower

application/json
post
/followers

Update Follower

Update a follower

post

Update an existing follower

Authorizations
AuthorizationstringRequired

API key in Authorization header with Bearer prefix (recommended)

Path parameters
followerIdxstringRequired

The unique identifier for the follower

Body
namestringOptional

Name of the follower (optional)

Example: John Smith
emailstringOptional

Email address of the follower (optional)

Example: [email protected]
attributesobjectOptional

Custom attributes to merge with existing attributes (key-value pairs, optional)

Example: {"job_title":"Senior Product Manager","department":"Product","location":"San Francisco"}
Responses
200

Successfully updated the follower

application/json
post
/followers/{followerIdx}

Delete a follower

Delete a follower

delete

Delete a follower

Authorizations
AuthorizationstringRequired

API key in Authorization header with Bearer prefix (recommended)

Path parameters
followerIdxstringRequired

The unique identifier for the follower

Query parameters
contentstring · enumOptional

Action to take with follower's content: 'delete' removes all content, 'reassign' transfers content to an anonymous user

Default: deletePossible values:
Responses
200

Request was successful

application/json
delete
/followers/{followerIdx}

Last updated