Overview
Webhooks are a way for you to get notified when something happens within our system that is related to your account. For example, when your customer finances a purchase with you.
Webhook Request
For each event, we will send a post request to the endpoint you specify in your webhook. The request will include a signature that you should verify to ensure that the request originate from Finove. This is done by verifying the signature with your webhook secret key. See Securing your webhooks for more information on verifying the signature.
Expected Response
Our server expects to receive a 2xx response. If our server does not receive a 2xx response, we will retry the webhook request until we receive a success response. We will retry up to 15 times.
Last updated