Skip to main content
Version: Next

Account Bank Transfers

POST https://api.fraudio.com/v1/transactions/account-bank-transfers

Endpoint Overview

Our Account Bank Transfers endpoint collects withdrawals, incoming bank transfers and outgoing bank transfers. These types of transactions provide us with more complete profiles of merchants which improves the quality of the Merchant Fraud and/or the AML product for you.

Account bank transfers are only applicable under the following circumstances:

  • you are using the Merchant Fraud product and/or the AML product
  • you have visibility over merchants' bank accounts
  • the bank transfers are initiated by the merchants (if the transfers are all scheduled and automated by default, then there is no need to send bank transfers to this endpoint)

The account bank transfers can be sent either individually or in batch.

Request Parameters

Request parameters in JSON format

{
"data": [
{
"transactionid": "00000001",
"transactiontype": "withdrawal",
"timestamp": 1646063615,
"merchant": "853CA6B7-79BB-DE46-049F-FC2603FAC59F",
"walletid": "893067473928",
"originalamount": 1.1,
"currency": "978",
"iban": "NL51INGB40123456789876"
}
]
}

Request parameters: Field Reference Table

FieldData TypePayment Fraud (Issuer)Payment Fraud (Acquirer / Processor)Merchant Fraud / AMLDescription
transactionidStringn.a.n.a.Important
The unique identifier of the transaction event. Every transaction event, so auth, capture, auth_capture, etc., has its own unique ID.
timestampDoublen.a.n.a.Important
The UTC time at which the transaction was made. When sending events in realtime, this will usually be 'now'. Only Unix Timestamps are accepted.
transactiontypeStringn.a.n.a.Important
The type of transaction event. Possible values are:

- payout: A direct transfer of funds (OCT) to credit card holders.

- withdrawal: The withdrawal of cash from a bank account.

- bank_incoming_transfer: The incoming transfer of money into a bank account.

- bank_outgoing_transfer: The outgoing transfer of money out of a bank account.

- wallet_incoming_transfer: The incoming transfer of money into a wallet.

- wallet_outgoing_transfer: The outgoing transfer of money out of a wallet.
originalamountDoublen.a.n.a.Important
Amount/value of the transaction in the original currency. Must be a nonnegative value.
currencyStringn.a.n.a.Important
The 3-digit ISO code for the currency used in the transaction.
merchantStringn.a.n.a.Important
The name or identifier of the merchant. This field uniquely identifies the merchant, and should not be confused with the MID. Any name or unique identifier is accepted.
ibanStringn.a.n.a.Supplementary
IBAN (International Bank Account Number). Bank account number or ID is also sufficient.
walletidStringn.a.n.a.Supplementary
External ID of the merchant wallet.

Response Parameters

Status CodeStatus MessageDescriptionSchema
200OKStandard response for successful HTTP requests.200 OK - Data Collection Response
4xx, 500, 501, 502, 503, 504errorVarious error messages for unsuccessful HTTP requests.Problem response

Code samples

curl -X POST 'https://api.fraudio.com/v1/transactions/account-bank-transfers' \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H 'Content-Type: application/json' \
--data-raw '{"data":[{"transactionid":"00000001","transactiontype":"withdrawal","timestamp":1646063615,"merchant":"853CA6B7-79BB-DE46-049F-FC2603FAC59F","walletid":"893067473928","originalamount":1.1,"currency":"978","iban":"NL51INGB40123456789876"}]}'