Webhooks

Delete a Webhook

Remove a webhook subscription.

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.

On this page