## Delete `client.webhooks.delete(WebhookDeleteParamsbody, RequestOptionsoptions?): WebhookDeleteResponse` **delete** `/api/account/webhooks` Delete specific webhooks from the account ### Parameters - `body: WebhookDeleteParams` - `webhooks: Array` Array of webhook URLs to delete - `type?: "receive" | "line_blocked" | "line_assigned" | 4 more` Type of webhook to delete from - `"receive"` - `"line_blocked"` - `"line_assigned"` - `"outbound"` - `"typing_indicator"` - `"call_log"` - `"contact_created"` ### Returns - `WebhookDeleteResponse` - `message?: string` - `status?: string` ### Example ```typescript import SendblueAPI from 'sendblue'; const client = new SendblueAPI({ apiKey: process.env['SENDBLUE_API_API_KEY'], // This is the default and can be omitted apiSecret: process.env['SENDBLUE_API_API_SECRET'], // This is the default and can be omitted }); const webhook = await client.webhooks.delete({ webhooks: ['https://example.com'] }); console.log(webhook.message); ```