JavaScript
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}}; fetch('https://blackbox.dasha.ai/api/v1/agents/{agentId}', 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>" }
Permanently deletes an AI voice agent from your organization. This operation removes the agent configuration and infrastructure assignments but preserves historical call records.
Agent identifier
Agent deleted successfully
Was this page helpful?