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": "9da60e45-5620-4292-9e97-88c419aae9c8",
    "type": "incident_sub_statuses",
    "attributes": {
      "sub_status_id": "2ad0da31-bf94-4a9b-8c7a-c165da253a9b",
      "incident_id": "146c0eb3-fb09-470b-b939-480d41473820",
      "assigned_at": "2025-03-26T23:22:23.983-07:00",
      "assigned_by_user_id": 312
    },
    "relationships": {
      "sub_status": {
        "data": {
          "id": "2ad0da31-bf94-4a9b-8c7a-c165da253a9b",
          "type": "sub_statuses"
        }
      },
      "assigned_by_user": {
        "data": {
          "id": "312",
          "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