Watchers
Subscribe to ticket updates by watching and unwatching tickets.
Watching a ticket subscribes you to notifications about changes -- status updates, new comments, assignment changes, and more.
Watch Ticket
POST /api/v1/boards/{boardId}/tickets/{ticketId}/watchStart watching a ticket. You'll receive notifications for all future changes.
Example Response
{
"isWatching": true
}Unwatch Ticket
DELETE /api/v1/boards/{boardId}/tickets/{ticketId}/watchStop watching a ticket.
Example Response
{
"isWatching": false
}Get Watch Status
GET /api/v1/boards/{boardId}/tickets/{ticketId}/watch-statusCheck whether the current user is watching a ticket.
Example Response
{
"isWatching": true
}List Watchers
GET /api/v1/boards/{boardId}/tickets/{ticketId}/watchersReturns all users watching a ticket.
Example Response
{
"data": [
{
"id": "usr_abc123",
"name": "Alex Smith",
"email": "[email protected]"
}
]
}