Delete Transcription
Delete the specified transcription.
Request URL
DELETE
https://voice.bandwidth.com/api/v2/accounts/{accountId}/calls/{callId}/recordings/{recordingId}/transcription
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 transcription 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}/transcription" \
-u '{username}:{password}'
HTTP/1.1 204
ApiResponse<Void> response = controller.deleteRecordingTranscription(accountId, callId, recordingId);
controller.DeleteRecordingTranscription(accountId, callId, recordingId);
voice_client.delete_recording_transcription(VOICE_ACCOUNT_ID, call_id, recording_id)
voice_client.delete_recording_transcription(VOICE_ACCOUNT_ID, call_id, recording_id)
await voiceController.deleteRecordingTranscription(accountId, callId, recordingId);
$voiceClient->deleteRecordingTranscription($accountId, $callId, $recordingId);