Phones

List IP phones

get

List IP phones

Authorizations
Responses
200
OK
application/json
get
GET /api/phones HTTP/1.1
Host: hostname:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "items": [
    {
      "extension_number": "text",
      "vendor": "text",
      "model": "text",
      "fwver": "text",
      "name": "text",
      "password": "text",
      "vm_pin": "text",
      "ip": "text",
      "mac": "text"
    }
  ]
}

Retrieve Phone's detailed information.

get

Retrieve phone's detailed information.

Authorizations
Path parameters
macstringRequired

MAC address.

Responses
200
OK
application/json
get
GET /api/phones/{mac} HTTP/1.1
Host: hostname:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "extension_number": "text",
  "vendor": "text",
  "model": "text",
  "fwver": "text",
  "name": "text",
  "password": "text",
  "vm_pin": "text",
  "ip": "text",
  "mac": "text"
}