Retrieves a specific Sub-Status by id
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"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Resource UUID
sub_status found by slug
The response is of type object
.
Was this page helpful?
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"
}
}
}