The POST v0/{accountKey}/calls/
endpoint allows you to request a call either on behalf of a specific agent or agent group. Designed to support a number of potential "from" and "to" selectors for future use.
...
Code Block |
---|
|
{
"from": {
"agentId": "1234",
"presentedCLID": "08008888888"
},
"to": {
"telephoneNumber": "02072068888"
},
"regarding": {
"reference": "0012400000ATTUQ"
},
"application": "appName"
} |
Make call from agent 1234 to telephone number 02072068888 with consent
Code Block |
---|
language | powershell |
---|
theme | Midnight |
---|
|
curl -X POST "https://***.newvoicemedia.com/v0/a1b2c3d4e5/calls/"
-d '{ "from": { "agentId": "1234", "consent": "OneParty" }, "to": { "telephoneNumber": "02072068888", "consent": "OneParty" } }'
-H "Authorization: Bearer <ACCESS_TOKEN>"
-H "Content-Type: application/json;version=6" |
...