Skip to main content
GET
/
incidents
/
{incident}
/
updates
/
{update}
Get Incident Update
curl --request GET \
  --url http://localhost/api/incidents/{incident}/updates/{update} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "type": "updates",
    "attributes": {
      "id": 123,
      "updateable_id": 123,
      "updateable_type": "<string>",
      "message": "<string>",
      "created": {
        "human": "<string>",
        "string": "<string>"
      },
      "updated": {
        "human": "<string>",
        "string": "<string>"
      },
      "status": {
        "human": "<string>",
        "value": "<string>"
      }
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

incident
integer
required

The incident ID

update
integer
required

The update ID

Query Parameters

include
string

Available includes are incident, incidentCount, incidentExists. You can include multiple options by separating them with a comma.

Response

Update

data
Update · object
required