Skip to main content

Account Transactions

Request

POST <API base url>/account-transactions

Body

[
{
"id": int64 required, // Unique transaction identifier

"customerId": int64 required, // Customer identifier

"accountId": int64 , // Account identifier

"timestamp": string required, // Transaction timestamp in UTC time zone
// in ISO format e.g. "2022-08-15T10:03:15.332Z"

"purposeType": string, // utility, mobile, tv, stasionar, charity ...

"amount": decimal required, // Transaction amount in the analytical currency.
// An issuer selects this currency. Typically
// this is a local currency of bank residence
// (e.g. USD for bank from the USA, or GBP for GB).
// Positive number - accrual, negative - charge

"originalAmount": decimal required, // Amount in the original currency of operation
// (as specified in currencyCode).
// Positive number - accrual, negative - charge

"originalCurrency": string required, // Original currency code (ISO 4217), e.g. "USD"

"countryCode": string required, // Country code (ISO 3166-1 alpha-2)

"branchCode": string // Branch code
},
...
]

Response

The endpoint returns no response body.