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": "898de703-6612-480f-a9a9-04c17d4f743e",
"type": "incident_sub_statuses",
"attributes": {
"sub_status_id": "87759e9b-06f4-4144-85ac-fbc55ee55443",
"incident_id": "85747d91-63d0-41f2-af91-784ec19598cc",
"assigned_at": "2025-09-10T23:02:31.839-07:00",
"assigned_by_user_id": 313
},
"relationships": {
"sub_status": {
"data": {
"id": "87759e9b-06f4-4144-85ac-fbc55ee55443",
"type": "sub_statuses"
}
},
"assigned_by_user": {
"data": {
"id": "313",
"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": "898de703-6612-480f-a9a9-04c17d4f743e",
"type": "incident_sub_statuses",
"attributes": {
"sub_status_id": "87759e9b-06f4-4144-85ac-fbc55ee55443",
"incident_id": "85747d91-63d0-41f2-af91-784ec19598cc",
"assigned_at": "2025-09-10T23:02:31.839-07:00",
"assigned_by_user_id": 313
},
"relationships": {
"sub_status": {
"data": {
"id": "87759e9b-06f4-4144-85ac-fbc55ee55443",
"type": "sub_statuses"
}
},
"assigned_by_user": {
"data": {
"id": "313",
"type": "users"
}
}
}
}
}