Webhooks
Webhooks will keep your app up to date with the payment progress.
Make sure to listen out for our payment complete webhook before you deliver your product.
Set up Webhooks
To begin receiving webhooks, you must first add a valid URL to the 'Manage Webhook' section of the Gateway Dashboard. If this is successful, the URL will show appear in this section. Note that you can currently only have one URL, so all your endpoint should account for all the products you offer.
Validating a Request
To ensure a secure connection between our servers and your app, we encrypt the request body as a Json Web Token (JWT), signed with your API key. This is the same API key as is used for making requests and can be found in your Dashboard.
Example with NPM Package
Example with NodeJS
Last updated