There are many cases where you might need to change the Scheduled Time of voice call which you had scheduled earlier. To do so, use this API.
send_at
parameter.{ status: true, message: "Voice call rescheduled successfully."}
{ "status":false, "message":"Information about why the request is rejected (in string format)"}
{ "status":false, "message":"Auth-Error root cause will be stated here."}
{ "status":false, "message":"Forbidded Resource Access."}
{ "status":false, "message":"Something Went Wrong"}
A HTTP PUT
request must have body in below format.
{"voice_id": XXX, // The Unique ID you got in response of Send-Voice call request."new_send_at": 1569266700,"timezone": "Asia/Kolkata(GMT +05:30)" // timezone}
After the request is successfully received at our server, response will be like below with Status Code: 200
{ status: true, message: "Voice call rescheduled successfully."}
​
If you have scheduled a voice call for future date/time, but because of any reason you may want to cancel the call, before it is actually sent to the recipient. To do so, this API comes handy.
{ status: true, message: "Voice call cancelled successfully."}
{ "status":false, "message":"Information about why the request is rejected (in string format)"}
{ "status":false, "message":"Auth-Error root cause will be stated here."}
{ "status":false, "message":"Forbidded Resource Access."}
{ "status":false, "message":"Something Went Wrong"}
A HTTP DELTE
request must have URL in below format.
https://<base_url>/bulk-voice/cancelScheduled/207
here, 207
is the Unique ID of Send Voice Call Request.
After the request is successfully received at our server, response will be like below with Status Code: 200
{ status: true, message: "Voice call cancelled successfully."}