Retrieves a specific Status by id
curl --request GET \
--url https://api.rootly.com/v1/statuses/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "c162a44d-f238-48fa-b3cb-bca93f4c9767",
"type": "statuses",
"attributes": {
"name": "Status 1",
"slug": "status-1",
"description": null,
"color": "#D7F5E1",
"enabled": true,
"created_at": "2025-12-10T22:43:01.932-08:00",
"updated_at": "2025-12-10T22:43:01.932-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
status found by slug
Show child attributes
Unique ID of the status
statuses Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/statuses/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "c162a44d-f238-48fa-b3cb-bca93f4c9767",
"type": "statuses",
"attributes": {
"name": "Status 1",
"slug": "status-1",
"description": null,
"color": "#D7F5E1",
"enabled": true,
"created_at": "2025-12-10T22:43:01.932-08:00",
"updated_at": "2025-12-10T22:43:01.932-08:00"
}
}
}