# List all followers of a topic Returns a list of all users who follow the topic, and allows for pagination of the records. Response body is an array of records. Endpoint: GET /v2/channels/{channel_id}/followers Version: v2 Security: oauth2_as_a_user, oauth2_as_a_server ## Path parameters: - `channel_id` (integer, required) ID of the topic. The topic must exist in the program. ## Query parameters: - `page.size` (integer) Return ``. Default is 1, resulting in the first page being retrieved - `page.number` (integer) Using classical pagination, the page number to return. Default is 1 ## Response 200 fields (application/json): - `data` (array, required) - `data.avatar_url` (string) Path to an image representing the follower. Example: "https://example.com/avatar.png" - `data.display_name` (string) The name to display as the follower. Example: "Some User" - `data.user_id` (integer) The Firstup user_id of the follower. Example: 123 - `data.full_name` (string) Full name of the follower. Example: "Bobby Brown" - `data.username` (string) Username of the follower. Example: "BobbyBrown" - `data.employee_id` (string) Employee ID of the follower. Example: "employee1" - `meta` (object) - `meta.pagination` (object) - `meta.pagination.page` (any) The page returned. Example: 1 - `meta.pagination.page_size` (any) The max number of records requested with pagination applied. Is not necessarily an exact count of the current records returned. Example: 10 - `meta.pagination.total_records` (any) A count of all records if the request were not paginated. If filters are applied, total_records only counts records matching the filters. Example: 20