Query Paging Group List

Query the paging groups that has been created on the PBX.

Endpoint

POST /api/v1.1.0/paginggrouplist/query?token={token}

Request Parameters

No parameter. Only need to send the request.

Response Parameters

Name Type Description
paginggrouplist Object Object parameter.
id Int Paging group ID.
number String Paging group number.
name String Paging group name.

Examples

Request Example

POST /api/v1.1.0/paginggrouplist/query?token=277ac400357b509b4a587ff2157f7ad5 HTTP/1.1
Content-Type:application/json; charset=utf-8
Host: 192.168.5.150

Response Example

HTTP/1.1 200 OK
Access-control-allow-origin: *
Access-control-allow-methods: GET, POST, OPTIONS, PUT, DELETE
{
    "status": "Success",
    "paginggrouplist": [
        {
            "id": "1",
            "number": "6300",
            "name": "6300"
        }
    ]
}