Dect phone models

List DECT phone models

get

List DECT phone models.

Authorizations
Responses
curl -L \
  --url 'https://HOSTNAME:8887/api/dect_phone_models' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "items": [
    {
      "filename": "text",
      "model": "text",
      "lines": 1,
      "display_name": "text"
    }
  ]
}

Retrieve details of DECT phone model

get

Retrieve details of DECT phone model.

Authorizations
Path parameters
namestringrequired

Template XML file name for phone provisioning.

Responses
curl -L \
  --url 'https://HOSTNAME:8887/api/dect_phone_models/{name}' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "template": "text",
  "languages": [
    "ENGLISH"
  ],
  "tones": [
    "text"
  ],
  "time_zones": [
    "text"
  ],
  "codecs": [
    "text"
  ],
  "lines": 1
}

Was this helpful?