Skip to content
Go to Micro

Delete a webhook

webhooks.delete(strwebhook_id, WebhookDeleteParams**kwargs)
DELETE/v2/webhooks/{teamId}/{webhookId}

Delete a webhook

ParametersExpand Collapse
team_id: Optional[str]
formatuuid
webhook_id: str
formatuuid

Delete a webhook

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",
)
Returns Examples