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": "56107c61-baa1-40dc-a211-6e3bef898653",
"type": "incident_sub_statuses",
"attributes": {
"sub_status_id": "531b3505-5a95-4eb9-92b4-f936eeca977f",
"incident_id": "507f36e7-1980-427d-950a-72a3dc8edf4f",
"assigned_at": "2025-12-19T18:16:47.212-08:00",
"assigned_by_user_id": 362
},
"relationships": {
"sub_status": {
"data": {
"id": "531b3505-5a95-4eb9-92b4-f936eeca977f",
"type": "sub_statuses"
}
},
"assigned_by_user": {
"data": {
"id": "362",
"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": "56107c61-baa1-40dc-a211-6e3bef898653",
"type": "incident_sub_statuses",
"attributes": {
"sub_status_id": "531b3505-5a95-4eb9-92b4-f936eeca977f",
"incident_id": "507f36e7-1980-427d-950a-72a3dc8edf4f",
"assigned_at": "2025-12-19T18:16:47.212-08:00",
"assigned_by_user_id": 362
},
"relationships": {
"sub_status": {
"data": {
"id": "531b3505-5a95-4eb9-92b4-f936eeca977f",
"type": "sub_statuses"
}
},
"assigned_by_user": {
"data": {
"id": "362",
"type": "users"
}
}
}
}
}