Edit a Paging Group
Edit the settings of a paging group.
Endpoint
POST /api/v1.1.0/paginggroup/update?token={token}
Request Parameters
Name | Importance | Type | Description |
---|---|---|---|
id |
Required | String | Paging group ID. Query Paging Group List to get the paging group ID. |
number |
Required | String | Paging group number. |
name |
Required | String | Paging group name. |
duplex |
Required | String | Paging group type.
|
1-Way Paging ("duplex": "paging") | |||
allowexten |
Required | String | Set extensions as paging group members. Separate multiple
extensions with , . Example:
|
allowextengroup |
Required | String | Set extension groups as paging group members. Separate
multiple extension groups with , . Example:
|
enablekeyhanup |
Required | String | Weather to enable Dial * to Answer
feature. If enabled, paging group members can dial * to answer an announcement, and the group announcement will terminate, and the extension who dials * can have a private call with the initiator.
|
2-Way Intercom ("duplex": "intercom") | |||
allowexten |
Required | String | Set extensions as paging group members. Separate multiple
extensions with , . Example:
|
allowextengroup |
Required | String | Set extension groups as paging group members. Separate
multiple extension groups with , . Example:
|
enablekeyhanup |
Required | String | Weather to enable Dial * to Answer
feature. If enabled, paging group members can dial * to answer an announcement, and the group announcement will terminate, and the extension who dials * can have a private call with the initiator.
|
1-Way Multicast Paging ("duplex": "multicast") | |||
multicastip |
Required | String | If the paging group type is multicast , set
the multicast IP address. |
enablekeyhanup |
Required | String | Weather to enable Dial * to Answer
feature. If enabled, paging group members can dial * to answer an announcement, and the group announcement will terminate, and the extension who dials * can have a private call with the initiator.
|
Examples
Request Example
POST /api/v1.1.0/paginggroup/update?token=277ac400357b509b4a587ff2157f7ad5 HTTP/1.1 Content-Type:application/json; charset=utf-8 Host: 192.168.5.150 { "id": "8", "number": "6300", "name": "6300", "duplex": "intercom", "allowexten": "1000,1001", "allowextengroup": "sales", "enablekeyhanup": "no" }
Response Example
HTTP/1.1 200 OK Access-control-allow-origin: * Access-control-allow-methods: GET, POST, OPTIONS, PUT, DELETE { "status": "Success" }