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": "f0b3f763-b1fb-486d-b54d-70f5bc16e5ef",
    "type": "incident_sub_statuses",
    "attributes": {
      "sub_status_id": "b6936c79-4975-43c2-a93a-c604cb37cf21",
      "incident_id": "1fc9121c-b1e5-43ad-9e64-0a2fa31dc2e0",
      "assigned_at": "2025-06-18T22:13:50.000-07:00",
      "assigned_by_user_id": 296
    },
    "relationships": {
      "sub_status": {
        "data": {
          "id": "b6936c79-4975-43c2-a93a-c604cb37cf21",
          "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.