Skip to main content
DELETE
/
api
/
v1
/
web-integrations
/
{integrationId}
Delete web integration
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};

fetch('https://blackbox.dasha.ai/api/v1/web-integrations/{integrationId}', 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 web integration and revokes all associated tokens.
External systems using this integration will immediately lose access.

Path Parameters

integrationId
string
required

Integration identifier

Response

Web integration deleted successfully