## Delete a webhook `client.webhooks.delete(stringwebhookID, WebhookDeleteParamsparams?, RequestOptionsoptions?): void` **delete** `/v2/webhooks/{teamId}/{webhookId}` Delete a webhook ### Parameters - `webhookID: string` - `params: WebhookDeleteParams` - `teamId?: string` ### Example ```typescript import Micro from '@micro-so/sdk'; const client = new Micro({ teamID: 'My Team ID', apiKey: process.env['MICRO_API_KEY'], // This is the default and can be omitted }); await client.webhooks.delete('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e'); ```