---
title: "list transactions · RUAL Documentation"
description: "List the non-duplicated posted transactions of an account"
canonical: https://docs.rual.nl/block-types/saltedge/saltedgeconnection_transactions_list
language: en
---

# list transactions

This block is part of the [`saltedge`](https://docs.rual.nl/block-types/saltedge) group and was last modified in core [`v13.0.6`](https://docs.rual.nl/core-versions/130006).

List the non-duplicated posted transactions of an account

- flow `flow`

- connection required `saltedgeconnection` current saltedge connection

- connection id required `value` connection to retrieve transactions for

- account id required `value` account to retrieve transactions for

- from id `value` id of the transaction which the list starts with

- flow `flow`

- connection `saltedgeconnection` current saltedge connection

- success `condition` Returns the success state of the API request

- transactions `array ` All posted-transactions for this connection

```
[
  {
    "account_id": "333333333333333333",
    "amount": -200,
    "category": "advertising",
    "created_at": "2024-01-23T10:40:49Z",
    "currency_code": "USD",
    "description": "test transaction",
    "duplicated": false,
    "extra": {
      "original_amount": -3974.6,
      "original_currency_code": "CZK",
      "posting_date": "2020-05-07",
      "time": "23:56:12"
    },
    "id": "444444444444444444",
    "made_on": "2020-05-03",
    "mode": "normal",
    "status": "posted",
    "updated_at": "2024-01-24T10:40:49Z"
  }
]
```

- error `value` An API error if the success out-pin if `false`

A typical wiring for [list transactions](https://docs.rual.nl/block-types/saltedge/saltedgeconnection_transactions_list): a [function trigger](https://docs.rual.nl/block-types/globals/trigger_custom_function) starts the flow; [get countries](https://docs.rual.nl/block-types/saltedge/saltedgeconnection_get_countries) feeds the `connection` pin; [value](https://docs.rual.nl/block-types/value/value_default) feeds the `connection_id` pin; [value](https://docs.rual.nl/block-types/value/value_default) feeds the `account_id` pin; the `flow` out pin feeds [debug](https://docs.rual.nl/block-types/state%20ui/state_debug).

![Studio canvas example for the list transactions block: typical wiring for list transactions.](https://docs.rual.nl/canvas-examples/saltedgeconnection_transactions_list.png)

### Version history

Introduced in [`v13.0.6`](https://docs.rual.nl/core-versions/130006).
