ilert · Example Payload

Post Alert Sources

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

Post Alert Sources 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": "Create a new alert source.",
  "description": "",
  "method": "POST",
  "path": "/alert-sources",
  "parameters": {},
  "request_body": {
    "id": 1,
    "teams": [
      {
        "id": null,
        "name": null
      }
    ],
    "name": "string",
    "iconUrl": "string",
    "lightIconUrl": "string",
    "darkIconUrl": "string"
  },
  "response": {
    "id": 1,
    "teams": [
      {
        "id": null,
        "name": null
      }
    ],
    "name": "string",
    "iconUrl": "string",
    "lightIconUrl": "string",
    "darkIconUrl": "string"
  }
}