LogoLogo
  • Intro
  • Quick Start
  • Reference
    • API Requests - V2
      • Create Order
      • Create Invoice
      • Deposit Callback
      • Check Order
      • Check Orders
    • API Requests - V1 - deprecated!
      • Create Order
      • Deposit Callback
      • Check Source
      • Check Order
      • Check Orders
Powered by GitBook
On this page
  1. Reference
  2. API Requests - V2

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.

PreviousCreate InvoiceNextCheck Order

Last updated 2 years ago