Skip to content

Latest commit

 

History

History
58 lines (42 loc) · 1.11 KB

File metadata and controls

58 lines (42 loc) · 1.11 KB
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.

Example Use Cases

Pause a Webhook

To temporarily stop receiving webhook deliveries without deleting the webhook:

{
  "active": false
}

Update Destination URL

{
  "url": "https://new-endpoint.example.com/webhooks"
}

Change Chain Filter

{
  "chain_ids": [1, 10, 8453]
}

Update Multiple Properties

You can update multiple properties in a single request:

{
  "name": "Updated USDC Monitor",
  "active": true,
  "chain_ids": [1, 8453]
}