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
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
Returns a list of followers
API key in Authorization header with Bearer prefix (recommended)
Limits the number of items on a page
20The after cursor - used for pagination
Include custom attributes in the response
Successfully returned a list of followers
Invalid request
Search for a follower
Search for followers by email
API key in Authorization header with Bearer prefix (recommended)
Include custom attributes in the response
Successfully returned a list of followers
Invalid request
Create Follower
Create a new follower
API key in Authorization header with Bearer prefix (recommended)
Name of the follower
John SmithCustom attributes for the follower (key-value pairs)
{"job_title":"Product Manager","birth_date":"1990-05-15","department":"Engineering"}Successfully created a new follower
Invalid request
Custom attributes not enabled (when attributes or companies are provided)
Update Follower
Update an existing follower
API key in Authorization header with Bearer prefix (recommended)
The unique identifier for the follower
Name of the follower (optional)
John SmithCustom attributes to merge with existing attributes (key-value pairs, optional)
{"job_title":"Senior Product Manager","department":"Product","location":"San Francisco"}Successfully updated the follower
Invalid request
Custom attributes not enabled
Follower not found
Delete a follower
Delete a follower
API key in Authorization header with Bearer prefix (recommended)
The unique identifier for the follower
Action to take with follower's content: 'delete' removes all content, 'reassign' transfers content to an anonymous user
deletePossible values: Request was successful
Invalid request
Last updated