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": "65fe163b-9415-4732-9a32-a40c4dc15867",
    "type": "sub_statuses",
    "attributes": {
      "name": "jcho5",
      "description": "Explicabo officia odit maxime.",
      "slug": "jcho5",
      "parent_status": "started",
      "position": 3,
      "deleted_at": null,
      "updated_at": "2025-09-10T23:05:03.525-07:00",
      "created_at": "2025-09-10T23:05:03.525-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

sub_status found by slug

The response is of type object.