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": "c96c801f-ccaf-4844-bf28-98da1e724176",
"type": "incident_sub_statuses",
"attributes": {
"sub_status_id": "ff349f37-e448-4879-ad8f-7c5116bc114e",
"incident_id": "ffbdfa2a-e510-493c-8f40-377813d24fa5",
"assigned_at": "2026-01-30T15:04:13.257-08:00",
"assigned_by_user_id": 667
},
"relationships": {
"sub_status": {
"data": {
"id": "ff349f37-e448-4879-ad8f-7c5116bc114e",
"type": "sub_statuses"
}
},
"assigned_by_user": {
"data": {
"id": "667",
"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
Show child attributes
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/incident_sub_statuses/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "c96c801f-ccaf-4844-bf28-98da1e724176",
"type": "incident_sub_statuses",
"attributes": {
"sub_status_id": "ff349f37-e448-4879-ad8f-7c5116bc114e",
"incident_id": "ffbdfa2a-e510-493c-8f40-377813d24fa5",
"assigned_at": "2026-01-30T15:04:13.257-08:00",
"assigned_by_user_id": 667
},
"relationships": {
"sub_status": {
"data": {
"id": "ff349f37-e448-4879-ad8f-7c5116bc114e",
"type": "sub_statuses"
}
},
"assigned_by_user": {
"data": {
"id": "667",
"type": "users"
}
}
}
}
}