Show Developer Menu

GET /incidents/{identifier}

Issuing a GET call to /incidents/{identifier} will allow you to retrieve the incident for the Brand.

Example Request
curl 'https://{brand}.reamaze.io/api/v1/incidents/{identifier}' \
  -u {login-email}:{api-token} \
  -H 'Accept: application/json'
Example Response
{
  "id": "{incident-id}",
  "title": "Shipments have run into some issues",
  "created_at": "2020-03-08T21:57:36.732-07:00",
  "updated_at": "2020-03-08T21:58:14.112-07:00",
  "status": "investigating",
  "updates": [{
    "id": "{incident-update-id}",
    "status": "investigating",
    "message": "One of our out of shipment providers has run into issues"
  }],
  "incidents_systems": [{
    "id": "{incident-system-id}",
    "system_id": "{system-id}",
    "status": "partial_outage",
    "system": {
      "id": "{system-id}",
      "title": "Shipment Providers"
    }
  }]
}