Video Channels
List followers of a video channel
get/api/v1/video-channels/{channelHandle}/followers
Path parameters
channelHandlestring required
Example:my_username | my_username@example.com
The video channel handle
Query parameters
startinteger
Offset used to paginate results
countinteger
Number of items to return
sort'createdAt'
Sort followers by criteria
searchstring
Plain text search, applied to various parts of the model depending on endpoint
Response
successful operation
Example response
{
"data": [
{
"follower": {
"id": 42,
"name": "chocobozzz"
},
"following": {
"id": 42,
"name": "chocobozzz"
},
"id": 42
}
],
"total": 1
}