Help Center
Webhook Setup and Testing with the DigitalPilot MCP Server
Create secure DigitalPilot webhooks, validate payload handling, and avoid common integration mistakes before going live.
Who This Is For
Engineers integrating DigitalPilot events into downstream systems.
Supported Event Subscriptions
high_intenttarget_accountslead_capture
Create and Validate a Webhook
Call create_webhook with:
urlsubscriptionsobject (booleans per event)- Optional
signing_secretfor HMAC-SHA256 verification
- Confirm with
list_webhooks. - Fetch sample payload via
get_webhook_test_payload(event optional; defaults tohigh_intent). - Validate parser/signature handling in your receiver.
Security Recommendations
- Always set
signing_secretin production. - Verify signatures server-side before processing.
- Log failed signature checks with enough metadata for debugging.
Common Issues
- Receiver not accepting JSON shape for event-specific payloads.
- Forgetting to subscribe to the event type expected by downstream automation.
- Assuming webhook test payload is a historical event (it is a schema sample).
Was this information helpful?
Thank you for your feedback!