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 |
---|---|
| Transaction's unique identifier |
| Transaction's description cleaned and processed by the API |
| Transaction's raw description taken from the bank |
| Transaction's amount. A positive value indicates a credit and a negative value indicates a debit |
| Transaction date |
| Timestamp recording when the transaction was last updated |
| 3 letters ISO 4217 currency code |
| Flag to indicate that the transaction was deleted |
| Transaction's category unique identifier |
| Transaction's account unique identifier |
| Flag to indicate that the transaction will be debited in the future and doesn’t affect the account’s balance |
| Flag to indicate if the transaction should be displayed in your frontend. The value is set to |
{
"id": 1000013102238,
"clean_description": "CB Monop Paris",
"bank_description": "Paiement Carte 029412 75 monop paris",
"amount": -9.39,
"date": "2016-02-22",
"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
}