ilert · Example Payload

Get Call Flow Numbers

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

Get Call Flow Numbers 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": "List call flow numbers.",
  "description": "",
  "method": "GET",
  "path": "/call-flow-numbers",
  "parameters": {
    "state": "ANY",
    "include": [
      "assignedTo"
    ],
    "start-index": 1,
    "max-results": 1,
    "query": "string"
  },
  "request_body": null,
  "response": [
    {
      "id": 1,
      "name": "string",
      "state": "AVAILABLE",
      "phoneNumber": {
        "regionCode": null,
        "number": null
      },
      "assignedTo": {
        "id": null,
        "name": null
      }
    }
  ]
}