Transaction resource

Transaction resource represents an operation on an account.
Its amount can be either negative or positive. The sign depends on the nature of the transaction (debit - credit).

FieldDescription
id
long
Transaction's unique identifier
clean_description
string
Transaction's description cleaned and processed by the API
bank_description
string
Transaction's raw description taken from the bank
amount
double
Transaction's amount

A positive value indicates a credit and a negative value indicates a debit
date
date
Transaction date
booking_date
date
Actual date when the transaction is posted to the account
This field might not show in the API response
transaction_date
date
Date on which the banking transaction is carried out but the the balance is not affected
This field might not show in the API response
value_date
date
Value date of the transaction on the account
This field might not show in the API response
updated_at
timestamp
Timestamp recording when the transaction was last updated
currency_code
string
3 letters ISO 4217 currency code
is_deleted
boolean
Flag to indicate that the transaction was deleted
category_id
long
Transaction's category unique identifier
account_id
long
Transaction's account unique identifier
is_future
boolean
Flag to indicate that the transaction will be debited in the future and doesn’t affect the account’s balance
show_client_side booleanFlag to indicate if the transaction should be displayed in your frontend. The value is set to false for transactions from a differed debit card account after the same transaction has been added on the related checking account
Example transaction resource
{
  "id": 1000013102238,
  "clean_description": "CB Monop Paris",
  "bank_description": "Paiement Carte 029412 75 monop paris",
  "amount": -9.39,
  "date": "2023-07-31",
  "booking_date": "2023-07-30",
  "transaction_date": "2023-07-31",
  "value_date": "2023-07-30",
  "updated_at": "2016-02-22T13:27:53Z",
  "currency_code": "EUR",
  "is_deleted": false,
  "category_id": 168,
  "account_id": 2341339,
  "is_future": false,
  "show_client_side": true
}