ilert · Example Payload

Get Incidents

Incident ManagementOn-Call AlertingAlert RoutingEscalation PoliciesOn-Call SchedulesStatus PagesHeartbeat MonitoringEvent ManagementDevOpsSREIT Operations

Get Incidents is an example object payload from ilert, with 7 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

summarydescriptionmethodpathparametersrequest_bodyresponse

Example Payload

Raw ↑
{
  "summary": "Get incidents.",
  "description": "",
  "method": "GET",
  "path": "/incidents",
  "parameters": {
    "start-index": 1,
    "max-results": 1,
    "include": [
      "subscribed"
    ],
    "states": [
      "INVESTIGATING"
    ],
    "services": [
      1
    ],
    "from": "string",
    "until": "string"
  },
  "request_body": null,
  "response": [
    {
      "id": 1.0,
      "summary": "string",
      "status": "INVESTIGATING",
      "message": "string",
      "sendNotification": true,
      "createdAt": "string"
    }
  ]
}