Hold a Call
Put an active call on hold.
Note: You can use the Resume Call on Hold interface to resume the call.
Endpoint
POST /api/v0.0.1/extension/hold?token={token}&type={type}
Request Parameters
Name | Importance | Type | Description |
extid | Required | Int | Put the extension’s call on hold. |
Examples
Request Example
POST /api/v0.0.1/extension/hold?token=813b621cfe8eecf445a2ce1f4a079ffe&type=json HTTP/1.1
Content-Type:application/json; charset=utf-8
Host: 172.16.6.150
{
“extid”: “101”
}
POST /api/v0.0.1/extension/hold?token=813b621cfe8eecf445a2ce1f4a079ffe&type=xml HTTP/1.1
Content-Type:application/xml; charset=utf-8
Host: 172.16.6.150
<?xml version=”1.0″ encoding=”UTF-8″ ?>
<xml>
<extid>101</extid>
</xml>
Response Example
HTTP/1.1 200 OK
Access-control-allow-origin: *
Access-control-allow-methods: GET, POST, OPTIONS, PUT, DELETE
<?xml version=”1.0″ encoding=”UTF-8″ ?>
<xml>
<extid>101</extid>
</xml>