Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Resource UUID
Body
application/vnd.api+json
Response
sub_status updated
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": "3c211a64-b6f8-455e-b133-793fbde9b986",
"type": "sub_statuses",
"attributes": {
"name": "aep3o",
"description": "Updated description",
"slug": "aep3o",
"parent_status": "started",
"position": 3,
"deleted_at": null,
"updated_at": "2025-09-18T09:22:39.024-07:00",
"created_at": "2025-09-18T09:22:37.481-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Resource UUID
Show child attributes
sub_status updated
Show child attributes
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": "3c211a64-b6f8-455e-b133-793fbde9b986",
"type": "sub_statuses",
"attributes": {
"name": "aep3o",
"description": "Updated description",
"slug": "aep3o",
"parent_status": "started",
"position": 3,
"deleted_at": null,
"updated_at": "2025-09-18T09:22:39.024-07:00",
"created_at": "2025-09-18T09:22:37.481-07:00"
}
}
}