| title | Update Webhook |
|---|---|
| sidebarTitle | Update Webhook |
| description | Modify an existing webhook subscription's configuration. |
| openapi | /openapi.json PATCH /beta/evm/subscriptions/webhooks/{webhookId} |
Partially updates a webhook subscription's configuration. You can modify any of the webhook's properties without having to resend the entire configuration.
Only include the fields you want to update. All other properties will remain unchanged. To manage subscribed addresses (add/remove), use the [Update Addresses](/evm/subscriptions/update-webhook-addresses) endpoint instead.To temporarily stop receiving webhook deliveries without deleting the webhook:
{
"active": false
}{
"url": "https://new-endpoint.example.com/webhooks"
}{
"chain_ids": [1, 10, 8453]
}You can update multiple properties in a single request:
{
"name": "Updated USDC Monitor",
"active": true,
"chain_ids": [1, 8453]
}