## Delete a webhook subscription `client.webhookSubscriptions.delete(stringsubscriptionID, RequestOptionsoptions?): void` **delete** `/v3/webhook-subscriptions/{subscriptionId}` Delete a webhook subscription. ### Parameters - `subscriptionID: string` ### Example ```typescript import LinqAPIV3 from '@linqapp/sdk'; const client = new LinqAPIV3({ apiKey: process.env['LINQ_API_V3_API_KEY'], // This is the default and can be omitted }); await client.webhookSubscriptions.delete('b2c3d4e5-f6a7-8901-bcde-f23456789012'); ``` #### Response ```json { "error": { "status": 401, "code": 2004, "message": "Unauthorized - missing or invalid authentication token" }, "success": false } ```