Deposit Callback
Webhook after receving payment.
Deposit Callback
In this step, we are sending you a webhook with the status of the payment to your provided URL in the FCF Pay dashboard as a project callback URL.
This webhook happens when you receive payment.
The request has a JSON body value like this:
{
"success": true,
"data": {
"type":"deposit",
"order_id": "Test123"
},
"message": "Payment Received"
}
Field
Description
type
Callback type
order_id
The order_id that has received a payment.
Last updated