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"
}
'
{
  "data": {
    "message": "Transcription deleted successfully."
  }
}
This action is irreversible. Once deleted, the transcription and all its processed data cannot be recovered.
Returns 404 if the transcription is not found.

Authorizations

x-api-key
string
header
required

Body

application/json
transcription_id
string<uuid>
required

The unique identifier of the transcription to delete.

Response

200 - application/json

Transcription deleted successfully.

data
object