update_webhook
Partially update an outbound webhook to change its URL, secret, event types, description, or enabled status. Set secret to null to remove the signature; re-enabling resets failure counter.
Instructions
Partially update an outbound event webhook (Pro+ only, PATCH /v1/webhooks/:id). Only the specified fields change (url / secret / eventTypes / description / enabled). Sending secret as null removes the signature; re-enabling with enabled=true also resets the consecutive-failure counter. Other accounts' webhooks return 404. webhookId is the id from list_webhooks.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | No | New URL (HTTPS required) | |
| secret | No | New secret (empty / null removes it) | |
| enabled | No | Enabled flag | |
| webhookId | Yes | Target webhook id (owh_...) | |
| eventTypes | No | Array of subscribed event kinds (empty = all) | |
| description | No | Display memo |