How do I test in Sandbox?
How do I test in Sandbox?
To test webhooks in Sandbox:
- Create a webhook in your Sandbox Dashboard account targeting your test endpoint
- Use the Test feature in Dashboard to send a test event to your webhook
- Verify your consumer receives the event with
is_test=true - Optionally, you can trigger real events such as using the CreateIdentity API to create a new identity and receive an
identity.approvedevent
My consumer failed to process a message, how should I recover?
My consumer failed to process a message, how should I recover?
If your consumer failed to process a message, Paxos will attempt to retry for up to 24 hours, read the full retry policy for more information.
After this you can use the List Events API to fetch undelivered events and process them.
Are there rate limits for webhook deliveries?
Are there rate limits for webhook deliveries?
Yes, webhook invocations to your consumer endpoint are rate-limited. When configuring a webhook via the Dashboard, you can set the rate limit from 1 to 100 requests per second. The default is 10 requests per second. For more information, see our rate limits documentation.
How can I send test events?
How can I send test events?
After creating a webhook via the Dashboard, use the Test feature to send test events to your webhook endpoint. These events will be marked with
is_test=true.For step-by-step instructions, see Test a Webhook in the Dashboard guide.