Skip to main content
POST
/
v1
/
incidents
/
{incident_id}
/
sub_statuses
Creates a sub-status assignment
curl --request POST \
  --url https://api.rootly.com/v1/incidents/{incident_id}/sub_statuses \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "incident_sub_statuses",
    "attributes": {
      "sub_status_id": "<string>",
      "assigned_at": "<string>",
      "assigned_by_user_id": 123
    }
  }
}'
{
  "data": {
    "id": "ceeff25f-cbc2-445f-92b0-5360f1900a5f",
    "type": "incident_sub_statuses",
    "attributes": {
      "sub_status_id": "566b8fc2-bd4f-4762-8f94-0fcd75e9652c",
      "incident_id": "b42b7fd8-d832-4198-ac63-9314edc7740b",
      "assigned_at": "2025-11-27T00:10:20.000-08:00",
      "assigned_by_user_id": null
    },
    "relationships": {
      "sub_status": {
        "data": {
          "id": "566b8fc2-bd4f-4762-8f94-0fcd75e9652c",
          "type": "sub_statuses"
        }
      },
      "assigned_by_user": {
        "data": null
      }
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

incident_id
string
required

Body

application/vnd.api+json
data
object
required

Response

incident_sub_status created

data
object
required