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