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": "57142a43-b87b-4638-94cb-25f52b48068c",
"type": "incident_sub_statuses",
"attributes": {
"sub_status_id": "01a3f29f-6532-4e2c-a666-d539a1488b5f",
"incident_id": "332faf62-d035-48e9-917a-c4730d992fa3",
"assigned_at": "2025-08-11T20:44:28.000-07:00",
"assigned_by_user_id": 297
},
"relationships": {
"sub_status": {
"data": {
"id": "01a3f29f-6532-4e2c-a666-d539a1488b5f",
"type": "sub_statuses"
}
},
"assigned_by_user": {
"data": {
"id": "297",
"type": "users"
}
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_sub_status updated
The response is of type object
.
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": "57142a43-b87b-4638-94cb-25f52b48068c",
"type": "incident_sub_statuses",
"attributes": {
"sub_status_id": "01a3f29f-6532-4e2c-a666-d539a1488b5f",
"incident_id": "332faf62-d035-48e9-917a-c4730d992fa3",
"assigned_at": "2025-08-11T20:44:28.000-07:00",
"assigned_by_user_id": 297
},
"relationships": {
"sub_status": {
"data": {
"id": "01a3f29f-6532-4e2c-a666-d539a1488b5f",
"type": "sub_statuses"
}
},
"assigned_by_user": {
"data": {
"id": "297",
"type": "users"
}
}
}
}
}