Skip to main content
DELETE
/
api
/
v1
/
pronunciation-dictionaries
/
{providerId}
Delete pronunciation dictionary
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};

fetch('https://blackbox.dasha.ai/api/v1/pronunciation-dictionaries/{providerId}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "type": "<string>",
  "title": "<string>",
  "status": 123,
  "detail": "<string>",
  "instance": "<string>"
}
This operation permanently deletes the pronunciation dictionary and cannot be undone.

Cascade Deletion

The deletion process automatically:
  1. Deletes the pronunciation dictionary
  2. Removes references from all agents using this dictionary
  3. Updates affected agent configurations
Check affected agents before deletion using the /affected-agents endpoint.

Path Parameters

providerId
string
required

Dictionary identifier

Response

Pronunciation dictionary deleted successfully