Delete a call resource

This example shows you how to delete a call. If the call is active, this SHOULD hang up the call. #TODO

Replace the following placeholder values in the sample code:

KeyDescription
bearer_tokenYour OAuth token. Read more about OAuth tokens
account_idThe Vonage Business Communications account ID.
call_idThe call id for the call you would like to delete
curl --location --request DELETE 'https://api.vonage.com/t/vbc.prod/telephony/v3/cc/accounts/$account_id/calls/$call_id' \--header 'Content-Type: application/json' \--header 'Authorization: Bearer $bearer_token' \