Query Paging Group List
Query the paging groups that has been created on the PBX.
Endpoint
POST /api/v0.0.1/paginggroup/lists?token={token}&type={type}
Request Parameters
No parameter. Only need to send the request.
Response Parameters
Name | Type | Description |
status | String | Request results.
|
paginggrouplist | Array <PaginggroupInfo> | Object parameter. |
PaginggroupInfo | ||
number | String | Paging group number. |
name | String | Paging group name. |
Examples
Request Example
POST /api/v0.0.1/paginggrouplist/lists?token=277ac400357b509b4a587ff2157f7ad5
Content-Type:application/json; charset=utf-8
Host: 172.16.6.150
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”,
“paginggrouplist”: [
{
“number”: “8891”,
“name”: “test_api_paging_4”
}
]
}