v1

latestOpenAPI 3.0.32026-07-14490228.1 KB

Update an Existing Dial List

This endpoint updates an existing dial list owned by the client.

put/diallists/{id}

Path parameters

idinteger required

The ID used to identify the dial list.

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
}