Update a specific Sub-Status by id
curl --request PUT \
--url https://api.rootly.com/v1/sub_statuses/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "sub_statuses",
"attributes": {
"name": "<string>",
"slug": "<string>",
"description": "<string>",
"position": 123
}
}
}'
{
"data": {
"id": "bb175796-c58e-4e8c-8326-a8d92efaa7cf",
"type": "sub_statuses",
"attributes": {
"name": "pe6vd",
"description": "Updated description",
"slug": "pe6vd",
"parent_status": "started",
"position": 3,
"deleted_at": null,
"updated_at": "2025-08-13T15:49:44.458-07:00",
"created_at": "2025-08-13T15:49:43.153-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
sub_status updated
The response is of type object
.
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/sub_statuses/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "sub_statuses",
"attributes": {
"name": "<string>",
"slug": "<string>",
"description": "<string>",
"position": 123
}
}
}'
{
"data": {
"id": "bb175796-c58e-4e8c-8326-a8d92efaa7cf",
"type": "sub_statuses",
"attributes": {
"name": "pe6vd",
"description": "Updated description",
"slug": "pe6vd",
"parent_status": "started",
"position": 3,
"deleted_at": null,
"updated_at": "2025-08-13T15:49:44.458-07:00",
"created_at": "2025-08-13T15:49:43.153-07:00"
}
}
}