Skip to main content
POST
/
delete-configuration
Delete a Configuration
curl --request POST \
  --url https://api.heify.com/delete-configuration \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "configuration_id": "a1b2c3d4-e5f6-7890-1234-567890abcdef"
}
'
{
  "data": {
    "message": "Configuration deleted successfully."
  }
}
This action is irreversible! Once deleted, the configuration cannot be recovered.
Returns 404 if the configuration is not found.
Existing transcriptions that were processed with this configuration remain accessible after deletion. Deleting a configuration does not affect already-processed data.
For a detailed explanation of the Configuration and its parameters, please consult the Configuration.

Authorizations

x-api-key
string
header
required

Body

application/json
configuration_id
string<uuid>
required

The unique identifier of the configuration to delete.

Response

200 - application/json

Configuration deleted successfully.

data
object