Skip to content

List project statuses

GET
/v1/projects/{projectId}/statuses

Returns the statuses valid for feedback in this project, ordered by position, and therefore the
exact set of ids status_id accepts when updating feedback. Every team status is valid in every
one of its projects, so this is the same list as GET /v1/teams/{teamId}/statuses, reached through
project access instead of team access. A project may hide a status from its own board and quick
filters; that is a display preference and such statuses are still listed, assignable and filterable.

Authorizations

BearerAuth

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

Type
HTTP (bearer)

Responses

Successful retrieval of the project'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