Delete Recording Media
Delete the media of the specified recording.
Request URL
DELETE
https://voice.bandwidth.com/api/v2/accounts/{accountId}/calls/{callId}/recordings/{recordingId}/media
Basic Authentication
Bandwidth's Voice API leverages Basic Authentication with your Dashboard API Credentials. Read more about how Bandwidth secures endpoints in the Security & Credentials document.
Supported Parameters
Parameter | Description |
---|---|
None | None |
Note: After the deletion is requested and a 204
is returned, the media will not be accessible anymore. However, it is not deleted immediately. This deletion process, while transparent and irreversible, can take an additional 24 to 48 hours.
Example 1 of 1: Delete recording
curl -X DELETE \
--url "https://voice.bandwidth.com/api/v2/accounts/{accountId}/calls/{callId}/recordings/{recordingId}/media" \
-u '{username}:{password}'
HTTP/1.1 204
ApiResponse<Void> response = controller.deleteRecordingMedia(accountId, callId, recordingId);
controller.DeleteRecordingMedia(accountId, callId, recordingId);
voice_client.delete_recording_media(VOICE_ACCOUNT_ID, call_id, recording_id)
voice_client.delete_recording_media(VOICE_ACCOUNT_ID, call_id, recording_id)
await voiceController.deleteRecordingMedia(accountId, callId, recordingId);
$voiceClient->deleteRecordingMedia($accountId, $callId, $recordingId);