Retrieves a specific incident_sub_status by id
curl --request GET \
--url https://api.rootly.com/v1/incident_sub_statuses/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "171d4360-67ed-4c9d-8716-96780ecf072a",
"type": "incident_sub_statuses",
"attributes": {
"sub_status_id": "f3755924-ce9e-4ad2-a728-42b279cb95c8",
"incident_id": "db6a103f-6d91-4128-8b38-6201d0eb3c36",
"assigned_at": "2025-08-01T11:09:33.997-07:00",
"assigned_by_user_id": 297
},
"relationships": {
"sub_status": {
"data": {
"id": "f3755924-ce9e-4ad2-a728-42b279cb95c8",
"type": "sub_statuses"
}
},
"assigned_by_user": {
"data": {
"id": "297",
"type": "users"
}
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
comma separated if needed. eg: sub_status,assigned_by_user
sub_status
, assigned_by_user
sub_status found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/incident_sub_statuses/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "171d4360-67ed-4c9d-8716-96780ecf072a",
"type": "incident_sub_statuses",
"attributes": {
"sub_status_id": "f3755924-ce9e-4ad2-a728-42b279cb95c8",
"incident_id": "db6a103f-6d91-4128-8b38-6201d0eb3c36",
"assigned_at": "2025-08-01T11:09:33.997-07:00",
"assigned_by_user_id": 297
},
"relationships": {
"sub_status": {
"data": {
"id": "f3755924-ce9e-4ad2-a728-42b279cb95c8",
"type": "sub_statuses"
}
},
"assigned_by_user": {
"data": {
"id": "297",
"type": "users"
}
}
}
}
}