ilert · Example Payload

Post Users

**Sample request** ```json Request URL: https://api.ilert.com/api/users { "firstName": "John", "lastName": "Doe", "email": "john@acme.com", "position": "Software Engineer", } ``` **Response** ````json { "id": 2188373, "firstName": "John", "lastName": "Doe", "email": "john@acme.com", "position": "Software Engineer", "timezone": "Europe/Berlin", "language": "de", "role": "RESPONDER", } ````

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

Post Users 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 user. Requires ADMIN privileges.",
  "description": "**Sample request**\n\n```json\nRequest URL: https://api.ilert.com/api/users\n\n{\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john@acme.com\",\n  \"position\": \"Software Engineer\",\n}\n```\n\n**Response**\n\n````json\n{\n  \"id\": 2188373,\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"email\": \"john@acme.com\",\n  \"position\": \"Software Engineer\",\n  \"timezone\": \"Europe/Berlin\",\n  \"language\": \"de\",\n  \"role\": \"RESPONDER\",\n }\n````\n",
  "method": "POST",
  "path": "/users",
  "parameters": {
    "send-no-invitation": true
  },
  "request_body": {
    "firstName": "string",
    "lastName": "string",
    "email": "string",
    "timezone": "Europe/Berlin",
    "position": "string",
    "department": "string"
  },
  "response": {
    "id": 1,
    "firstName": "string",
    "lastName": "string",
    "email": "string",
    "timezone": "Europe/Berlin",
    "position": "string"
  }
}