Was this helpful?
Retrieve a collection of DECT phone members.
The unique ID of DECT phone.
The unique ID of the resource.
curl -L \ --url 'https://HOSTNAME:8887/api/dect_phones/{id}/members' \ --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{ "items": [ { "id": "NzAwNTUxOTA5NzczMTQ4MTYw", "extension_number": "text", "display_name": "text", "ipui": "text", "handset_index": "text" } ] }
Update DECT phone member list.
Collection of extension members.
curl -L \ --request POST \ --url 'https://HOSTNAME:8887/api/dect_phones/{id}/members' \ --header 'Authorization: Bearer YOUR_SECRET_TOKEN' \ --header 'Content-Type: application/json' \ --data '{ "items": [ { "extension_number": "text", "ipui": "text", "handset_index": "text" } ] }'
No body
Check if extension is in DECT phone member list.
The extension number.
[0-9]{3,64}
curl -L \ --url 'https://HOSTNAME:8887/api/dect_phones/{id}/members/{extension_number}' \ --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{ "id": "NzAwNTUxOTA5NzczMTQ4MTYw", "extension_number": "text", "display_name": "text", "ipui": "text", "handset_index": "text" }