How to process the reception of a Webhook
Context
Section titled “Context”Once a webhook is activated, each time one of the related events occurs, ProAbono will send an HTTP POST request to the specified URL.
In the body of the request you will find the description of the event that occurred in JSON format.
It is up to you to process these elements as you wish, the only mandatory thing to do is to confirm the good reception of the webhook.
Procedure
Section titled “Procedure”In order to confirm the good reception of the notification, your application must answer with an HTTP 200 OK code as soon as it is received.
To go further
Section titled “To go further”Consult the dedicated documentation: How to secure my webhook?