GET/tasks/{id}/followers.json
Get Task Followers
To get a list of users that are following the activity of a given task.
Response including 'returnUserInfo=true' will return the followers infromation:
{
"followers": [
{
"avatarUrl": "https://path/to/person.jpg",
"firstName": "Joe",
"companyName": "My Company",
"followingChanges": true,
"followingComments": true,
"id": "12345",
"companyId": "1",
"lastName": "Bloggs"
}
],
"STATUS": "OK"
}
Path Params
- Name
id
- Type
- string
- required
- Description
Query Params
- Name
returnUserInfo
- Type
- boolean
- Description
Optionally, you can pass a returnUserInfo=true paramter to expand on the user information.
- Default
false