# Deposit Callback

## 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.&#x20;

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. |
