Fiat Deposit Received
Overview
When this event occurs, the provided callback URL will receive a JSON-formatted message with the above details. If the application successfully receives the webhook, it should respond with a 200 HTTP status code; otherwise, the banking platform will retry sending the message for a certain period.
For developers, it's important to manage these callbacks properly, including validating the received messages using the provided secret, to ensure proper synchronization between the banking platform and the application.
Callback Request Parameters
Field | Description |
---|---|
AccountId | Receiving account Id |
TransactionId | Associated transaction Id |
Reference | Deposit reference |
SenderDetails.RoutingNumber | Sender routing number |
SenderDetails.AccountNumber | Sender account number |
SenderDetails.Name | Sender name |
SenderDetails.AddressLine1 | Sender address line 1 |
SenderDetails.AddressLine2 | Sender address line 2 |
SenderDetails.AddressLine3 | Sender address line 3 |
Amount | Amount deposited |
Imad | Transfer IMAD number |
Date | Transfer date |
bReversal | True when a transaction is a refund for a existing transaction on the platform. In this case, |
OriginalTransactionsId | In cases where the fiat deposit represents a refund, this field will contain the ID of the original transaction. |
bFlagged | True when a transaction is flagged. Inbound transactions may be flagged by our compliance system. If this value is true, you can expect to receive a TRANSACTION_STATUS_UPDATED regarding updated status once a decision is made. |
Callback Example
Standard Deposit Example
Refund Deposit Example
Retrieving Further Information
Once a Fiat Deposit has been received, you can utilize the Get Transaction Details endpoint to retrieve further information for a particular transaction. You can do so by utilizing the Data.TransactionsId
value provided in this FIAT_DEPOSIT_RECIEVED callback.
You can also access account balances by accessing the Get Asset Account by ID endpoint. This endpoint will accept the Data.AccountsId
value, which corresponds to the ID of the account.
Last updated