List statuses for a team.
cURL
curl --request GET \ --url https://public.api.serval.com/v2/statuses \ --header 'Authorization: Bearer <token>'
{ "data": [ { "id": "<string>", "teamId": "<string>", "statusGroup": "TICKET_STATUS_GROUP_UNSPECIFIED", "name": "<string>", "description": "<string>", "isDefault": 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 status.
The ID of the team that the status belongs to.
The status group.
TICKET_STATUS_GROUP_UNSPECIFIED
TODO
IN_PROGRESS
DONE
CANCELED
The name of the status.
The description of the status.
Whether this is the default status for the team.
Was this page helpful?