GET
/
v1
/
sub_statuses
/
{id}
Retrieves a Sub-Status
curl --request GET \
  --url https://api.rootly.com/v1/sub_statuses/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "5d2b470c-863a-4fd2-84d8-ada5b7949575",
    "type": "sub_statuses",
    "attributes": {
      "name": "4upse",
      "description": "Maiores perferendis quis nisi.",
      "slug": "4upse",
      "parent_status": "started",
      "position": 3,
      "deleted_at": null,
      "updated_at": "2025-08-21T23:48:12.800-07:00",
      "created_at": "2025-08-21T23:48:12.800-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
required

Resource UUID

Response

200
application/vnd.api+json

sub_status found by slug

The response is of type object.