v1

latestOpenAPI 3.0.32026-07-14490228.1 KB

Create Dial List

This endpoint creates a new dial list and associates it with the client.

post/diallists

Request body

namestring required

The name used to easily identify the dial list. Allowed values are between 2 and 255 characters.

statusstring required

The status of the dial list. Allowed values are active and inactive.

Response

201

idinteger
namestring
scopestring
statusstring
numbers_countinteger

Example response

{
  "id": 1,
  "name": "Test Dial List",
  "numbers": [
    {
      "label": "Test 1",
      "number": "+15555555551"
    }
  ],
  "scope": "client",
  "status": "active",
  "numbers_count": 2
}