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": "d5a7fb83-e23c-4460-85e0-19500e8ef68e",
"type": "incident_sub_statuses",
"attributes": {
"sub_status_id": "e007010a-b3dd-48aa-8788-9b1dac10c08f",
"incident_id": "3d406c06-bd2d-43df-8236-f02a97676cb9",
"assigned_at": "2025-11-14T13:15:50.000-08:00",
"assigned_by_user_id": null
},
"relationships": {
"sub_status": {
"data": {
"id": "e007010a-b3dd-48aa-8788-9b1dac10c08f",
"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": "d5a7fb83-e23c-4460-85e0-19500e8ef68e",
"type": "incident_sub_statuses",
"attributes": {
"sub_status_id": "e007010a-b3dd-48aa-8788-9b1dac10c08f",
"incident_id": "3d406c06-bd2d-43df-8236-f02a97676cb9",
"assigned_at": "2025-11-14T13:15:50.000-08:00",
"assigned_by_user_id": null
},
"relationships": {
"sub_status": {
"data": {
"id": "e007010a-b3dd-48aa-8788-9b1dac10c08f",
"type": "sub_statuses"
}
},
"assigned_by_user": {
"data": null
}
}
}
}