Skip to main content
DELETE
/
delete-voice
/
{voice_id}
Delete Voice
curl --request DELETE \
  --url https://client.camb.ai/apis/delete-voice/{voice_id} \
  --header 'x-api-key: <api-key>'
{
  "status": "ok"
}

Overview

Use this endpoint to remove a custom voice you no longer need. You can delete only voices you created, and you must use an API key from the workspace that owns the voice. This is a permanent action, so make sure the voice is not used by any active workflows before deleting it.

Path Parameter

  • voice_id: The numeric ID of the voice to delete (for example, 9013).

Example Request

curl -X DELETE "https://client.camb.ai/apis/delete-voice/9013" \
  -H "x-api-key: YOUR_API_KEY"

Example Response

{
  "status": "ok"
}

Authorizations

x-api-key
string
header
required

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.

Path Parameters

voice_id
integer
required

The unique identifier of the custom voice to delete.

Response

Successful Response

Deletion confirmation payload for the requested voice.

status
enum<string>
required

Indicates successful deletion.

Available options:
ok