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": "d556507d-e469-483b-aa08-252737372a98",
    "type": "incident_sub_statuses",
    "attributes": {
      "sub_status_id": "b5400869-a0fc-48ea-837d-1f04e1eae27d",
      "incident_id": "f09e9a21-b608-4803-9762-1da016b7ed6f",
      "assigned_at": "2025-05-08T00:21:54.742-07:00",
      "assigned_by_user_id": 287
    },
    "relationships": {
      "sub_status": {
        "data": {
          "id": "b5400869-a0fc-48ea-837d-1f04e1eae27d",
          "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

The response is of type object.