PUT
/
v1
/
incident_sub_statuses
/
{id}
curl --request PUT \
  --url https://api.rootly.com/v1/incident_sub_statuses/{id} \
  --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": "b1992e5e-c88e-4771-ba9c-799521ae9242",
    "type": "incident_sub_statuses",
    "attributes": {
      "sub_status_id": "cb3bc709-f20d-456a-9313-f9410632dc05",
      "incident_id": "181b4edf-3243-4a08-b417-5cdeddcd6c8e",
      "assigned_at": "2025-07-01T20:55:35.000-07:00",
      "assigned_by_user_id": 296
    },
    "relationships": {
      "sub_status": {
        "data": {
          "id": "cb3bc709-f20d-456a-9313-f9410632dc05",
          "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

Body

application/vnd.api+json

Response

200 - application/vnd.api+json

incident_sub_status updated

The response is of type object.