SpedySpedy Docs

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}/watch

Start watching a ticket. You'll receive notifications for all future changes.

Example Response

{
  "isWatching": true
}

Unwatch Ticket

DELETE /api/v1/boards/{boardId}/tickets/{ticketId}/watch

Stop watching a ticket.

Example Response

{
  "isWatching": false
}

Get Watch Status

GET /api/v1/boards/{boardId}/tickets/{ticketId}/watch-status

Check whether the current user is watching a ticket.

Example Response

{
  "isWatching": true
}

List Watchers

GET /api/v1/boards/{boardId}/tickets/{ticketId}/watchers

Returns all users watching a ticket.

Example Response

{
  "data": [
    {
      "id": "usr_abc123",
      "name": "Alex Smith",
      "email": "[email protected]"
    }
  ]
}