ilert · Example Payload

Post Teams

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

Post Teams 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 team.",
  "description": "",
  "method": "POST",
  "path": "/teams",
  "parameters": {},
  "request_body": {
    "id": 1,
    "name": "string",
    "visibility": "PUBLIC",
    "members": [
      {
        "user": null,
        "role": null
      }
    ],
    "createdAt": "string",
    "updatedAt": "string"
  },
  "response": {
    "id": 1,
    "name": "string",
    "visibility": "PUBLIC",
    "members": [
      {
        "user": null,
        "role": null
      }
    ],
    "createdAt": "string",
    "updatedAt": "string"
  }
}