You are able to configure webhook integrations for data to be sent to your application. There are two types of webhook data available:
Common Details
Both webhooks share the following characteristics:
- Data is sent as a POST request in JSON format
- An
X-Secretheader is included with each request, containing the webhook secret you configured
- An
X-Request-Idheader is included for idempotency and tracking purposes
How should your application respond?
We need to receive a "successful" status code back to know that this was able to be received by you. A "successful" status is anything in the 2XX range.
You don't need to provide anything in response, and anything provided will be ignored.
If we don't receive a response, or receive a non-successful status, we will retry up to 2 more times (3 attempts total), with 1 minute and then 5 minutes between each attempt..
Β
