Contents

Get Status List of Project

Returns list of status in the project.

Role

All

Method

GET

URL

/api/v2/projects/:projectIdOrKey/statuses

URL parameters

Parameter NameTypeDescription
projectIdOrKeyStringProject ID or Project Key

Response example

Status Line / Response Header

HTTP/1.1 200 OK
Content-Type:application/json;charset=utf-8

Response Body

[
    {
        "id": 1,
        "projectId": 1,
        "name": "Open",
        "color": "#ed8077",
        "displayOrder": 1000
    },
    // ...
]