Skip to content

List team statuses

GET
/v1/teams/{teamId}/statuses

Returns the team's whole feedback status workflow, ordered by position. Every one of these is
valid in every project of the team.
Status ids are per team, so a status is only ever meaningful together with the team it came from.

Authorizations

BearerAuth

API token provided in the Authorization header as a Bearer token.

Type
HTTP (bearer)

Responses

Successful retrieval of the team's statuses.

application/json
JSON
{
  
"statuses": [
  
  
{
  
  
  
"status_id": 3,
  
  
  
"name": "Resolved",
  
  
  
"category": "resolved",
  
  
  
"color": "green",
  
  
  
"position": 30,
  
  
  
"built_in": true
  
  
}
  
]
}

Playground

Authorization

Samples

Powered by VitePress OpenAPI