ilert · Example Payload

Post Maintenance Windows

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

Post Maintenance Windows 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 maintenance window.",
  "description": "",
  "method": "POST",
  "path": "/maintenance-windows",
  "parameters": {},
  "request_body": {
    "timezone": "Europe/Berlin",
    "start": "string",
    "end": "string",
    "summary": "string",
    "description": "string",
    "alertSources": [
      {
        "id": null,
        "teams": null,
        "name": null,
        "iconUrl": null,
        "lightIconUrl": null,
        "darkIconUrl": null
      }
    ]
  },
  "response": {
    "timezone": "Europe/Berlin",
    "start": "string",
    "end": "string",
    "summary": "string",
    "description": "string",
    "alertSources": [
      {
        "id": null,
        "teams": null,
        "name": null,
        "iconUrl": null,
        "lightIconUrl": null,
        "darkIconUrl": null
      }
    ]
  }
}