Learn how to listen to webhooks and handle the events.
payment.success
or ticket.request_refund
and handle them in your application.
In this guide, weβll show you how to listen to webhooks and handle the events.
sign_secret
value, you will need it to verify the events.
payment.success
event:
id
: The unique identifier of the webhook event.event
: The name of the event.payload
: The data of the event.sign_secret
value that you received when you registered the webhook endpoint. You can use this value to verify the signature of the event.
Here is an example of how to verify the event in Node.js: