JavaScript
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" }
Permanently deletes a custom cloned voice from your organization’s voice library. The voice will become unavailable for use in agent configurations and synthesis requests.
Voice identifier
Cloned voice deleted successfully
Voice deletion operation result
Whether the voice was successfully deleted
Human-readable message describing the deletion result
Identifier of the deleted voice
Timestamp when the deletion occurred
Was this page helpful?