When you register a webhook endpoint in the Channel Manager API, you will start receiving events in your webhook endpoint. These events are sent as HTTP POST requests with a JSON payload that contains information about the event. The standard structure of the webhook event object is as follows:Documentation Index
Fetch the complete documentation index at: https://docs.fourvenues.com/llms.txt
Use this file to discover all available pages before exploring further.
request.headers['x-webhook-id']: The unique identifier of the event.request.headers['x-webhook-signature']: The signature of the event. This value is generated using thesign_secretvalue you received when you registered your webhook endpoint.request.body.id: The unique identifier of the event.request.body.event: The name of the event. Examplepayment.success.request.body.payload: The data related to the event. This can be different for each event type.