Webhooks
Delete a Webhook
Remove a webhook subscription.
Coming soon
This endpoint is documented but not yet available in production. The contract below reflects the planned behavior. Reach out via support for early access or launch notification.
DELETE /v1/webhooks/{webhook_id} permanently removes a webhook subscription. Use this when a callback URL is no longer in service or the integration has been retired.
If you only need to pause deliveries temporarily, use Update a Webhook and set is_active to false.
Request
Replace the example webhook ID with the subscription you want to delete.
export SCRAPER_API_BASE_URL="https://scraper.geonode.io"
export GEONODE_SCRAPER_API_KEY="YOUR_API_KEY"
curl -X DELETE "$SCRAPER_API_BASE_URL/v1/webhooks/2a936d3b-5a5d-47a0-b68d-5df0d8b8327c" \
-H "X-Api-Key: $GEONODE_SCRAPER_API_KEY"Response
A successful delete request returns 204 with no response body.