๐ Introducing MARS8 Series โ Four Powerful Variants | Available on All Major Clouds | Learn about the model here
๐ Introducing MARS8 Series โ Four Powerful Variants | Available on All Major Clouds | Learn about the model here
Permanently deletes a custom voice from your workspace using its voice ID.
curl --request DELETE \
--url https://client.camb.ai/apis/delete-voice/{voice_id} \
--header 'x-api-key: <api-key>'{
"status": "ok"
}Documentation Index
Fetch the complete documentation index at: https://docs.camb.ai/llms.txt
Use this file to discover all available pages before exploring further.
voice_id: The numeric ID of the voice to delete (for example, 9013).curl -X DELETE "https://client.camb.ai/apis/delete-voice/9013" \
-H "x-api-key: YOUR_API_KEY"
{
"status": "ok"
}
The x-api-key is a custom header required for authenticating requests to our API. Include this header in your request with the appropriate API key value to securely access our endpoints. You can find your API key(s) in the 'API' section of our studio website.
The unique identifier of the custom voice to delete.
Successful Response
Deletion confirmation payload for the requested voice.
Indicates successful deletion.
ok curl --request DELETE \
--url https://client.camb.ai/apis/delete-voice/{voice_id} \
--header 'x-api-key: <api-key>'{
"status": "ok"
}