Skip to main content
DELETE
/
api
/
v1
/
web-integrations
/
{integrationId}
Permanently delete a web integration and revoke all access
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>"
}

Path Parameters

integrationId
string
required

UUID of the integration to permanently delete

Response

Integration successfully deleted