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

FieldDescription

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

Callback Example

{
    "Id": "022afa7a-25e1-4a96-9273-eca3a5dd657f"
    "Type": "FIAT DEPOSIT RECEIVED"
    "Data":{
        "AccountsId": 1601,
        "TransactionsId": 13470,
        "Reference": "ExampleRef"
        "SenderDetails":{
            "RoutingNumber": "011000000",
            "AccountNumber": "0123456789",
            "Name": "Name Surname",
            "AddressLinel": "Address Line 1"
            "AddressLine2": "Address Line 2",
            "AddressLine3": null
        },
        "Amount": 25,
        "Imad": "7679117526335469481169"
        "Date": "2022-08-24713:39:37.72+00:00"
    }
}

Last updated