List priorities for a team.
cURL
curl --request GET \ --url https://public.api.serval.com/v2/priorities \ --header 'Authorization: Bearer <token>'
{ "data": [ { "id": "<string>", "teamId": "<string>", "priority": "<string>", "description": "<string>" } ] }
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 priority.
The ID of the team that the priority belongs to.
The priority level (NONE, LOW, MEDIUM, HIGH, URGENT, etc.).
The description of the priority.
Was this page helpful?