curl -X DELETE https://api.60db.ai/voices/voice-custom-123 \
-H "Authorization: Bearer your-api-key"
await client.deleteVoice("voice-custom-123");
client.delete_voice('voice-custom-123')
{
"success": true,
"message": "Voice deleted successfully"
}
Voices
Delete Voice
Delete a custom voice
DELETE
/
voices
/
:id
curl -X DELETE https://api.60db.ai/voices/voice-custom-123 \
-H "Authorization: Bearer your-api-key"
await client.deleteVoice("voice-custom-123");
client.delete_voice('voice-custom-123')
{
"success": true,
"message": "Voice deleted successfully"
}
Request
Path Parameters
string
required
The unique identifier of the voice to delete
Headers
string
required
Bearer token with your API key
This action cannot be undone. Only custom voices can be deleted.
Response
boolean
Indicates successful deletion
string
Confirmation message
curl -X DELETE https://api.60db.ai/voices/voice-custom-123 \
-H "Authorization: Bearer your-api-key"
await client.deleteVoice("voice-custom-123");
client.delete_voice('voice-custom-123')
{
"success": true,
"message": "Voice deleted successfully"
}