Skip to main content
DELETE
/
api
/
v1
/
voice
/
clone
/
{voiceId}
Delete cloned voice
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};

fetch('https://blackbox.dasha.ai/api/v1/voice/clone/{voiceId}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "success": true,
  "message": "<string>",
  "voiceId": "<string>",
  "deletedAt": "2023-11-07T05:31:56Z"
}
This operation permanently deletes the cloned voice and cannot be undone.

Impact

  • Voice immediately unavailable for new synthesis
  • Agents using this voice will need reconfiguration
  • Storage quota freed for new voice creation
  • Ongoing calls using this voice are not affected

Path Parameters

voiceId
string
required

Voice identifier

Response

Cloned voice deleted successfully

Voice deletion operation result

success
boolean

Whether the voice was successfully deleted

message
string | null

Human-readable message describing the deletion result

voiceId
string | null

Identifier of the deleted voice

deletedAt
string<date-time>

Timestamp when the deletion occurred