## Delete a webhook `webhooks.delete(strwebhook_id, WebhookDeleteParams**kwargs)` **delete** `/v2/webhooks/{teamId}/{webhookId}` Delete a webhook ### Parameters - `team_id: Optional[str]` - `webhook_id: str` ### Example ```python import os from micro_so import Micro client = Micro( api_key=os.environ.get("MICRO_API_KEY"), # This is the default and can be omitted ) client.webhooks.delete( webhook_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e", ) ```