Skip to main content
Webhooks are available on the Enterprise plan. See pricing for details.
Webhooks let you receive HTTP callbacks when resources in your workspace change. Instead of polling the API, you can subscribe to events like project creation or job updates and get notified automatically.

Setting up a webhook

  1. Log in to your DroneBundle dashboard
  2. Click Create Webhook
  3. Give it a name (e.g., “n8n Sync”, “HubSpot Integration”)
  4. Enter your HTTPS endpoint URL
  5. Select the events you want to subscribe to
  6. Copy the signing secret and store it somewhere safe
The signing secret is only shown once when you create the webhook. If you lose it, you will need to delete the webhook and create a new one.

Events

Subscribe to any combination of the following events:

Payload format

Every webhook delivery sends a POST request to your endpoint with a JSON body:
For delete events, data contains only the resource ID:

Headers

Each delivery includes the following headers:

Verifying signatures

Every delivery is signed with your webhook’s secret using HMAC-SHA256. Always verify the signature before processing the payload. See Verify Signatures for code examples in Node.js, Python, Java, C#, PHP, Go, and Rust.

Delivery behavior

  • Your endpoint must respond with a 2xx status code within 10 seconds
  • Non-2xx responses or timeouts are treated as failures
  • After 10 consecutive failures, the webhook is automatically paused
  • Reactivating a paused webhook from the dashboard resets the failure counter
  • Delivery logs are available in the dashboard for 30 days

Retry policy

If a delivery fails, it is retried up to 2 more times (3 total attempts) with a ~4 minute interval between each attempt. If all attempts fail, the event is dropped and the failure counter is incremented.
Deliveries may arrive more than once. Use the delivery_id field to deduplicate events on your end.