Channel Callbacks
First, read general information about callbacks: Callbacks (Webhooks).
We will send a callback on the following events:
deposit_completed
This event happens when we receive a deposit from the customer and successfully transfer this money to your account.
Since we receive a deposit in the channel from your customer, we will send a callback to your server. Here is an example of callbacks by their status:
Below are explanations for some specific fields:
amount
: the amount transferred by the client.amount_minus_fee
: The client's amount after deducting commissions.received_amount
: For integrations without auto-conversion to USDT, this value will matchamount_minus_fee
. For integrations with auto-conversion, it will be theamount_minus_fee
converted to USDT at theconversion_exchange_rate
, minus the commission for auto-conversion.The amount in
fiat_amounts
is calculated at the moment of receiving the payment from the client.Fields
customer_external_id
,external_id
,external_data
are set when creating a channel from the merchant's side (a unique string identifier/email of the client in the merchant's system, a unique string ID of the channel in the merchant's system, as well as additional information).
Callback Examples with Auto Conversion
If your project has enabled the auto conversion feature, received_currency
and receivied_amount
will contain USDT values. Here is an example:
Last updated