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).
| Field | Description |
|---|---|
idlong | Transaction's unique identifier |
clean_descriptionstring | Transaction's description cleaned and processed by the API |
bank_descriptionstring | Transaction's raw description taken from the bank |
amountdouble | Transaction's amount A positive value indicates a credit and a negative value indicates a debit |
datedate | Transaction date |
booking_datedate | Actual date when the transaction is posted to the account This field might not show in the API response |
transaction_datedate | 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_datedate | Value date of the transaction on the account This field might not show in the API response |
updated_attimestamp | Timestamp recording when the transaction was last updated |
currency_codestring | 3 letters ISO 4217 currency code |
is_deletedboolean | Flag to indicate that the transaction was deleted |
category_idlong | Transaction's category unique identifier |
account_idlong | Transaction's account unique identifier |
is_futureboolean | Flag to indicate that the transaction will be debited in the future and doesn't affect the account's balance |
show_client_sideboolean | Flag 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
}