ilert · Example Payload

Put Incidents {Id}

Note: the update will be automatically appended to the incident's update history and publish notifications to subscribers.

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

Put Incidents {Id} 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": "Update the specific incident.",
  "description": "Note: the update will be automatically appended to the incident's update history and publish notifications to subscribers.",
  "method": "PUT",
  "path": "/incidents/{id}",
  "parameters": {
    "id": 1.0,
    "If-Match": "string"
  },
  "request_body": {
    "id": 1.0,
    "summary": "string",
    "status": "INVESTIGATING",
    "message": "string",
    "sendNotification": true,
    "createdAt": "string"
  },
  "response": {
    "id": 1.0,
    "summary": "string",
    "status": "INVESTIGATING",
    "message": "string",
    "sendNotification": true,
    "createdAt": "string"
  }
}