Check if extension is in DECT phone member list.
The unique ID of DECT phone.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYw
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: */*
{
"id": "NzAwNTUxOTA5NzczMTQ4MTYw",
"extension_number": "text",
"display_name": "text",
"ipui": "text",
"handset_index": "text"
}
Retrieve a collection of DECT phone members.
The unique ID of DECT phone.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYw
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.
The unique ID of DECT phone.
The unique ID of the resource.
NzAwNTUxOTA5NzczMTQ4MTYw
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