Contents
Add Status
Adds new Status to the project. You can create up to 8 custom statuses within a Project aside from the 4 default.
Role
Administrator
Method
POST
URL
/api/v2/projects/:projectIdOrKey/statuses
URL parameters
Parameter Name | Type | Description |
---|---|---|
projectIdOrKey | String | Project ID or Project Key |
Form parameters
Content-Type:application/x-www-form-urlencoded
Parameter Name | Type | Description |
---|---|---|
name (Required) | String | Status name |
color (Required) | String | Background color: You can use the below colors ”#ea2c00" "#e87758" "#e07b9a" "#868cb7" "#3b9dbd" "#4caf93" "#b0be3c" "#eda62a" "#f42858" "#393939” |
Response example
Status Line / Response Header
HTTP/1.1 200 OK
Content-Type:application/json;charset=utf-8
Response Body
{
"id": 101,
"projectId": 1,
"name": "Waiting for review",
"color": "#e87758",
"displayOrder": 3999
}