JavaScript
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('https://blackbox.dasha.ai/api/v1/web-integrations/discover', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "integrationId": "<string>", "agentId": "<string>", "name": "<string>", "enabled": true, "features": [ { "name": "AllowWebCall", "enabled": true } ], "widgetAppearance": { "theme": "<string>", "position": "<string>", "colors": {}, "customStyles": {} }, "description": "<string>", "tools": [ "<string>" ] }
The API token string to validate and lookup
Returns the integration configuration
Public response DTO for web integration discovery endpoint. Contains only safe, non-sensitive information that can be exposed publicly.
1
Show child attributes
Was this page helpful?