Skip to content

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

ParameterTypeDescription
clientClient-
parameters{ webhookIds: number[]; }-
parameters.webhookIdsnumber[]A list of webhook IDs.

Returns

Promise<void>