Skip to main content
POST
/
v1
/
sub_statuses
Creates a Sub-Status
curl --request POST \
  --url https://api.rootly.com/v1/sub_statuses \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '
{
  "data": {
    "type": "sub_statuses",
    "attributes": {
      "name": "<string>",
      "parent_status": "started",
      "description": "<string>",
      "position": 123
    }
  }
}
'
{
  "data": {
    "id": "10ddf7f7-0e5b-4b35-b4a7-1210c59b25d9",
    "type": "sub_statuses",
    "attributes": {
      "name": "Test",
      "description": "This is a description",
      "slug": "test",
      "parent_status": "started",
      "position": 13,
      "deleted_at": null,
      "updated_at": "2026-02-07T16:51:14.928-08:00",
      "created_at": "2026-02-07T16:51:14.928-08:00"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/vnd.api+json
data
object
required

Response

sub_status created

data
object
required