Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
incident_sub_status created
Creates a new sub-status assignment from provided data
curl --request POST \
--url https://api.rootly.com/v1/incidents/{incident_id}/sub_statuses \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "incident_sub_statuses",
"attributes": {
"sub_status_id": "<string>",
"assigned_at": "<string>",
"assigned_by_user_id": 123
}
}
}'
{
"data": {
"id": "e7f73310-9b18-4cb7-8ff5-ea9086a2783f",
"type": "incident_sub_statuses",
"attributes": {
"sub_status_id": "95fcce30-ed59-462a-9adf-c677c8d8a491",
"incident_id": "733c6237-e718-4203-a5d6-d8ca378c6113",
"assigned_at": "2025-10-06T09:30:12.000-07:00",
"assigned_by_user_id": null
},
"relationships": {
"sub_status": {
"data": {
"id": "95fcce30-ed59-462a-9adf-c677c8d8a491",
"type": "sub_statuses"
}
},
"assigned_by_user": {
"data": null
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Show child attributes
incident_sub_status created
Show child attributes
Was this page helpful?
curl --request POST \
--url https://api.rootly.com/v1/incidents/{incident_id}/sub_statuses \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "incident_sub_statuses",
"attributes": {
"sub_status_id": "<string>",
"assigned_at": "<string>",
"assigned_by_user_id": 123
}
}
}'
{
"data": {
"id": "e7f73310-9b18-4cb7-8ff5-ea9086a2783f",
"type": "incident_sub_statuses",
"attributes": {
"sub_status_id": "95fcce30-ed59-462a-9adf-c677c8d8a491",
"incident_id": "733c6237-e718-4203-a5d6-d8ca378c6113",
"assigned_at": "2025-10-06T09:30:12.000-07:00",
"assigned_by_user_id": null
},
"relationships": {
"sub_status": {
"data": {
"id": "95fcce30-ed59-462a-9adf-c677c8d8a491",
"type": "sub_statuses"
}
},
"assigned_by_user": {
"data": null
}
}
}
}