Phones
List IP phones
Authorizations
Responses
200
OK
application/json
4XX
Error
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.
Authorizations
Path parameters
macstringRequired
MAC address.
Responses
200
OK
application/json
404
Not Found
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"
}