Query Paging Group Settings
Query the settings of a paging group, multiple paging groups, or all paging groups.
Endpoint
POST /api/v0.0.1/paginggroup/query?token={token}&type={type}
Request Parameters
Name | Importance | Type | Description |
number | Required | String | Paging group number.
Example: “number”:”8891″
Example: “number”: “8891,8892”
|
Response Parameters
Name | Type | Description |
status | String | Request results.
|
paginggroup | Array <PaginggroupInfo> | Paging group information list. |
PaginggroupInfo supports two Paging groups: one-way paging and two-way intercom. | ||
number | String | Paging group number. |
name | String | Paging group name. |
type | String | Paging group type.
|
member | String | Paging group member, that is, the extension number. |
Examples
Request Example
Query the detailed configuration of the broadcast group 6300.
POST /api/v0.0.1/paginggroup/query?token=277ac400357b509b4a587ff2157f7ad5&type=json
Content-Type:application/json; charset=utf-8
Host: 192.168.5.150
{
“number”:”8891″
}
Response Example
HTTP/1.1 200 OK
Server: Boa/0.94.14rc21
Accept-Ranges: bytes
Connection: close
Content-Type: application/json
Access-control-allow-origin: *
Access-control-allow-methods: GET, POST, OPTIONS, PUT, DELETE
{
“status”: “Success”,
“paginggroup”: [
{
“number”: “8891”,
“name”: “test_api_paging_4”,
“type”: “paging”,
“member”: “101,106,114”
}
]
}