Update a specific incident_sub_status by id
curl --request PUT \
--url https://api.rootly.com/v1/incident_sub_statuses/{id} \
--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": "0cfa47a5-879f-48f9-b078-a4c3242ba1e8",
"type": "incident_sub_statuses",
"attributes": {
"sub_status_id": "10323c34-9448-4993-b012-14bd95c1562a",
"incident_id": "10ca06eb-3535-4aaa-a390-bcbcac8e416e",
"assigned_at": "2025-12-09T17:46:55.000-08:00",
"assigned_by_user_id": 359
},
"relationships": {
"sub_status": {
"data": {
"id": "10323c34-9448-4993-b012-14bd95c1562a",
"type": "sub_statuses"
}
},
"assigned_by_user": {
"data": {
"id": "359",
"type": "users"
}
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
incident_sub_statuses Show child attributes
Note: To change an incident's sub-status, use the PATCH /incidents/:id endpoint and set the sub_status_id attribute. This endpoint is for modifying the timestamp of when an incident's sub-status was assigned.
incident_sub_status updated
Show child attributes
Unique ID of the incident_sub_status
incident_sub_statuses Show child attributes
Note: To change an incident's sub-status, use the PATCH /incidents/:id endpoint and set the sub_status_id attribute. This endpoint is for modifying the timestamp of when an incident's sub-status was assigned.
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/incident_sub_statuses/{id} \
--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": "0cfa47a5-879f-48f9-b078-a4c3242ba1e8",
"type": "incident_sub_statuses",
"attributes": {
"sub_status_id": "10323c34-9448-4993-b012-14bd95c1562a",
"incident_id": "10ca06eb-3535-4aaa-a390-bcbcac8e416e",
"assigned_at": "2025-12-09T17:46:55.000-08:00",
"assigned_by_user_id": 359
},
"relationships": {
"sub_status": {
"data": {
"id": "10323c34-9448-4993-b012-14bd95c1562a",
"type": "sub_statuses"
}
},
"assigned_by_user": {
"data": {
"id": "359",
"type": "users"
}
}
}
}
}