| title | Update Addresses |
|---|---|
| sidebarTitle | Update Addresses |
| description | Add or remove addresses from a webhook subscription. |
| openapi | /openapi.json PATCH /beta/evm/subscriptions/webhooks/{webhookId}/addresses |
Add or remove individual addresses from a webhook subscription without replacing the entire list. This is useful when you want to incrementally manage your subscribed addresses.
If you need to replace the entire address list at once, use the [Replace Webhook Addresses](/evm/subscriptions/replace-webhook-addresses) endpoint instead.Add one or more addresses to your existing subscription:
{
"add_addresses": [
"0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
"0x1234567890123456789012345678901234567890"
]
}Remove addresses that you no longer want to monitor:
{
"remove_addresses": [
"0x3f60008Dfd0EfC03F476D9B489D6C5B13B3eBF2C"
]
}{
"add_addresses": [
"0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb"
],
"remove_addresses": [
"0x3f60008Dfd0EfC03F476D9B489D6C5B13B3eBF2C"
]
}