GET
/
v1
/
incident_sub_statuses
/
{id}
curl --request GET \
  --url https://api.rootly.com/v1/incident_sub_statuses/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "edadea56-cc17-4f22-9b00-623625dd744f",
    "type": "incident_sub_statuses",
    "attributes": {
      "sub_status_id": "f243369a-8f6d-4e4d-97a5-08fc0b61d3be",
      "incident_id": "91879b5f-c6ee-4ab4-8883-9ee8dbe110c6",
      "assigned_at": "2025-04-18T18:20:31.205-07:00",
      "assigned_by_user_id": 287
    },
    "relationships": {
      "sub_status": {
        "data": {
          "id": "f243369a-8f6d-4e4d-97a5-08fc0b61d3be",
          "type": "sub_statuses"
        }
      },
      "assigned_by_user": {
        "data": {
          "id": "287",
          "type": "users"
        }
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Query Parameters

include
enum<string>

comma separated if needed. eg: sub_status,assigned_by_user

Available options:
sub_status,
assigned_by_user

Response

200 - application/vnd.api+json
sub_status found
data
object
required