Was this helpful?
List IP phones
/phones
curl -L \ --url 'https://HOSTNAME:8887/api/phones' \ --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{ "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.
/phones/{mac}
MAC address.
curl -L \ --url 'https://HOSTNAME:8887/api/phones/{mac}' \ --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{ "extension_number": "text", "vendor": "text", "model": "text", "fwver": "text", "name": "text", "password": "text", "vm_pin": "text", "ip": "text", "mac": "text" }