Skip to main content
DELETE
/
api
/
v1
/
voice
/
clone
/
{voiceId}
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"
}

Path Parameters

voiceId
string
required

Response

OK

Response DTO for voice deletion operations

success
boolean

Whether the deletion was successful

message
string | null

Deletion confirmation message

voiceId
string | null

ID of the deleted voice

deletedAt
string<date-time>

Timestamp when the voice was deleted