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": "e72f2869-0899-4384-8af2-f0c716dbbcdb",
    "type": "incident_sub_statuses",
    "attributes": {
      "sub_status_id": "e08356e6-ddbd-4699-9755-acadfdd469fa",
      "incident_id": "245554d0-7c37-4ed0-9208-bda82248e42f",
      "assigned_at": "2025-06-19T04:15:51.550-07:00",
      "assigned_by_user_id": 296
    },
    "relationships": {
      "sub_status": {
        "data": {
          "id": "e08356e6-ddbd-4699-9755-acadfdd469fa",
          "type": "sub_statuses"
        }
      },
      "assigned_by_user": {
        "data": {
          "id": "296",
          "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

The response is of type object.