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": "e2b9fcde-c0d2-4cf1-a54a-d4058efc7835",
"type": "sub_statuses",
"attributes": {
"name": "jb3ja",
"description": "Updated description",
"slug": "jb3ja",
"parent_status": "started",
"position": 3,
"deleted_at": null,
"updated_at": "2025-12-15T13:49:30.318-08:00",
"created_at": "2025-12-15T13:49:27.965-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
sub_status updated
Show child attributes
Unique ID of the sub_status
sub_statuses Show child attributes
in_triage, started, resolved, closed, cancelled, planning, scheduled, in_progress, verifying, completed 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": "e2b9fcde-c0d2-4cf1-a54a-d4058efc7835",
"type": "sub_statuses",
"attributes": {
"name": "jb3ja",
"description": "Updated description",
"slug": "jb3ja",
"parent_status": "started",
"position": 3,
"deleted_at": null,
"updated_at": "2025-12-15T13:49:30.318-08:00",
"created_at": "2025-12-15T13:49:27.965-08:00"
}
}
}