ilert · Example Payload

Post Alerts {Id} Actions

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

Post Alerts {Id} Actions 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": "Invoke a specific alert action.",
  "description": "",
  "method": "POST",
  "path": "/alerts/{id}/actions",
  "parameters": {
    "id": 1.0
  },
  "request_body": {
    "alertActionId": "string",
    "connectorId": "string",
    "type": "string",
    "name": "string",
    "iconUrl": "string",
    "history": [
      {
        "id": null,
        "alertActionId": null,
        "connectorId": null,
        "alertId": null,
        "success": null,
        "actor": null
      }
    ]
  },
  "response": {
    "id": "string",
    "alertActionId": "string",
    "connectorId": "string",
    "alertId": 1.0,
    "success": true,
    "actor": {
      "id": 1,
      "firstName": "string",
      "lastName": "string",
      "email": "string",
      "timezone": null,
      "position": "string"
    }
  }
}