## Delete a webhook subscription `webhook_subscriptions.delete(strsubscription_id)` **delete** `/v3/webhook-subscriptions/{subscriptionId}` Delete a webhook subscription. ### Parameters - `subscription_id: str` ### Example ```python import os from linq import LinqAPIV3 client = LinqAPIV3( api_key=os.environ.get("LINQ_API_V3_API_KEY"), # This is the default and can be omitted ) client.webhook_subscriptions.delete( "b2c3d4e5-f6a7-8901-bcde-f23456789012", ) ``` #### Response ```json { "error": { "status": 401, "code": 2004, "message": "Unauthorized - missing or invalid authentication token" }, "success": false } ```