List all subscribers for a ticket.
cURL
curl --request GET \ --url https://public.api.serval.com/v2/tickets/{ticket_id}/subscribers \ --header 'Authorization: Bearer <token>'
{ "data": [ { "userId": "<string>", "canUnsubscribe": true } ] }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Success
Show child attributes
The ID of the user who is subscribed to the ticket.
Whether the user can unsubscribe from the ticket. False for users who are automatically subscribed (e.g., requester, assignee, message authors).
Was this page helpful?