DELETE
/
v2
/
workspaces
/
{workspace_id}
/
webhooks
/
{endpoint_id}
JavaScript
import Honcho from '@honcho-ai/core';

const client = new Honcho({
  apiKey: 'My API Key',
});

const webhook = await client.workspaces.webhooks.delete('workspace_id', 'endpoint_id');

console.log(webhook);
"<any>"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

workspace_id
string
required

Workspace ID

endpoint_id
string
required

Webhook endpoint ID

Response

200
application/json

Successful Response

The response is of type any.