Was this helpful?
Retrieve information of ring group agent.
The unique ID of ring group.
The unique ID of the resource.
The extension number.
[0-9]{3,64}
GET /api/ring_groups/{id}/agents/{agent_number} HTTP/1.1 Host: hostname:8887 Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
OK
{ "extension_number": "text", "display_name": "text", "skill_level": 1 }
Retrieve a collection of ring group agents.
GET /api/ring_groups/{id}/agents HTTP/1.1 Host: hostname:8887 Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
{ "items": [ { "extension_number": "text", "display_name": "text", "skill_level": 1 } ] }
Update ring group member list.
Collection of agents.
POST /api/ring_groups/{id}/agents HTTP/1.1 Host: hostname:8887 Authorization: Bearer YOUR_SECRET_TOKEN Content-Type: application/json Accept: */* Content-Length: 55 { "items": [ { "extension_number": "text", "skill_level": 1 } ] }
No Content