Webhooks
Webhooks provide real-time notifications when events occur in your Proxy account. Configure endpoints to receive HTTP POST requests for events you care about.Setting Up Webhooks
Create a Webhook Endpoint
Webhook Fields
Event Types
Transaction Events
Intent Events
Card Events
Webhook Payload
Signature Verification
All webhooks include aProxy-Signature header for verification. The header format is:
tis the Unix timestamp (seconds) when the webhook was sentv1is the HMAC-SHA256 signature
{timestamp}.{json_payload} using your webhook secret.
Node.js Example
Convex Example
Retry Policy
Failed webhook deliveries are retried with exponential backoff:
After 5 failed attempts, the webhook is marked as failed and requires manual retry.
Managing Webhooks
List Webhooks
Update a Webhook
Delete a Webhook
Next Steps
API Reference
Full API documentation
Quickstart
Get started quickly