JavaScript
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('https://blackbox.dasha.ai/api/v1/pronunciation-dictionaries/{providerId}/affected-agents', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "agents": [ { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "name": "<string>" } ] }
Returns a list of agents that use the specified pronunciation dictionary. This is a BlackBox-only endpoint that queries the local database.
Provider-specific dictionary ID
Returns the list of affected agents
Response DTO listing agents affected by a pronunciation dictionary change. Used for BlackBox-only endpoint.
List of agents that use this pronunciation dictionary
Show child attributes
Was this page helpful?