Management API
Update Webhook
Update a webhook’s URL, filters, event types, or active status.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Update a webhook’s URL, filters, event types, or active status.
PUT /v3/webhooks/:id
| Field | Type | Description |
|---|---|---|
url | string | New delivery URL |
event_types | string[] | Replace event type subscriptions |
filters | object | Replace filter criteria |
active | boolean | Pause (false) or resume (true) |
description | string | Update label |
curl -X PUT https://api.polynode.dev/v3/webhooks/wh_451e06ca0534 \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"active": false}'
curl -X PUT https://api.polynode.dev/v3/webhooks/wh_451e06ca0534 \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"filters": {
"wallet_addresses": ["0xnewwallet..."],
"min_amount_usd": 500
}
}'
