Skip to main content
POST
/
delete-transcription
Delete a Transcription
curl --request POST \
  --url https://api.heify.com/delete-transcription \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "transcription_id": "1a2b3c4d-e5f6-7890-1234-567890abcdef"
}'
{
  "message": "Transcription deleted successfully."
}
This action is irreversible! Once deleted, the transcription cannot be recovered.
For a detailed explanation of the Transcription and its parameters, please consult the Transcription Object.

Authorizations

x-api-key
string
header
required

Body

application/json
transcription_id
string
required

The unique identifier of the transcription to be deleted.

Response

200 - application/json

Transcription deleted successfully.

message
string
Example:

"Transcription deleted successfully."