Was this helpful?
Check if extension is in DECT phone member list.
The unique ID of DECT phone.
The unique ID of the resource.
The extension number.
[0-9]{3,64}
GET /api/dect_phones/{id}/members/{extension_number} HTTP/1.1 Host: hostname:8887 Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
OK
{ "id": "NzAwNTUxOTA5NzczMTQ4MTYw", "extension_number": "text", "display_name": "text", "ipui": "text", "handset_index": "text" }
Retrieve a collection of DECT phone members.
GET /api/dect_phones/{id}/members HTTP/1.1 Host: hostname:8887 Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
{ "items": [ { "id": "NzAwNTUxOTA5NzczMTQ4MTYw", "extension_number": "text", "display_name": "text", "ipui": "text", "handset_index": "text" } ] }
Update DECT phone member list.
Collection of extension members.
POST /api/dect_phones/{id}/members HTTP/1.1 Host: hostname:8887 Authorization: Bearer YOUR_SECRET_TOKEN Content-Type: application/json Accept: */* Content-Length: 76 { "items": [ { "extension_number": "text", "ipui": "text", "handset_index": "text" } ] }
No content