ilert · Example Payload

Post Call Flows

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

Post Call Flows 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 call flow.",
  "description": "",
  "method": "POST",
  "path": "/call-flows",
  "parameters": {},
  "request_body": {
    "id": 1,
    "name": "string",
    "language": "de",
    "assignedNumber": {
      "id": 1,
      "name": "string",
      "phoneNumber": null
    },
    "teams": [
      {
        "id": null,
        "name": null
      }
    ],
    "root": {
      "id": 1,
      "name": "string",
      "nodeType": "ROOT",
      "metadata": null,
      "branches": [
        null
      ]
    }
  },
  "response": {
    "id": 1,
    "name": "string",
    "language": "de",
    "assignedNumber": {
      "id": 1,
      "name": "string",
      "phoneNumber": null
    },
    "teams": [
      {
        "id": null,
        "name": null
      }
    ],
    "root": {
      "id": 1,
      "name": "string",
      "nodeType": "ROOT",
      "metadata": null,
      "branches": [
        null
      ]
    }
  }
}