Function: deleteWebhookById()
ts
function deleteWebhookById(client, parameters): Promise<void>;Defined in: src/cloud/api/webhooks.ts:73
Removes webhooks by ID. Only webhooks registered by the calling app are removed. If webhooks created by other apps are specified, they are ignored.
Permissions required: Only Connect and OAuth 2.0 apps can use this operation.
Parameters
| Parameter | Type | Description |
|---|---|---|
client | Client | - |
parameters | { webhookIds: number[]; } | - |
parameters.webhookIds | number[] | A list of webhook IDs. |
Returns
Promise<void>