cURL
curl --request POST \ --url https://api.example.com/scheduled-calls/customer/{customerId}/cancel-all \ --header 'X-API-Key: <api-key>'
{ "canceledCount": 123, "scheduledCalls": [ { "id": "<string>", "customerId": "<string>", "scheduledTime": "<string>", "status": "<string>", "callId": "<string>", "postProcessingFlags": [ "<string>" ] } ] }
Cancels all pending scheduled calls for a customer
ID of customer whose scheduled calls should be canceled
All scheduled calls canceled for customer
Number of scheduled calls that were canceled
Array of canceled scheduled calls
Show child attributes