Delete Cloned Voice
FreshDELETEDELETE https://api.creatify.ai/api/voices/cloned/{id}/Permanently delete a cloned voice. This action cannot be undone.
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The cloned voice ID to delete |
Headers
| Header | Type | Required | Description |
|---|---|---|---|
X-API-ID | string | Yes | Your Creatify API ID |
X-API-KEY | string | Yes | Your Creatify API key |
Example Request
bash
curl -X DELETE 'https://api.creatify.ai/api/voices/cloned/cloned-voice-001/' \
-H 'X-API-ID: your-api-id' \
-H 'X-API-KEY: your-api-key'Response
json
{
"message": "Voice deleted successfully"
}Status Codes
| Code | Description |
|---|---|
200 | Voice deleted successfully |
401 | Unauthorized -- invalid API credentials |
404 | Cloned voice not found |
500 | Internal server error |
WARNING
Deleting a cloned voice is permanent. Any future video generation tasks referencing this voice ID will fail. Existing videos already rendered with this voice will not be affected.