Volt Accounts API (legacy)Volt accountsAccountsAccountidCurrencyTransactions

Get list of transactions

GET
/accounts/{accountId}/{currency}/transactions

Authorization

apiBearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

accountId*string

Id of Virtual account

Formatuuid
currency*string

Currency code, supported by Volt

Value in"EUR" | "GBP" | "DKK" | "PLN"

Query Parameters

page*integer

Number of a page

Default1
limit*integer

Number of items on the page

Default100
dateFrom*string

Date in YYYY-MM-DD format

Formatdate
dateTo*string

Date in YYYY-MM-DD format

Formatdate

Response Body

application/json

curl -X GET "https://connect-api-sandbox.volt.io/accounts/94c01e1e-533e-41d5-ab70-ac163d6099f5/EUR/transactions?page=1&limit=5&dateFrom=2024-10-29&dateTo=2024-11-05"
[
  {
    "id": "57ad1a6b-95ac-4b33-8c92-311cda8f3c99",
    "createdAt": "2024-11-04T14:49:23+00:00",
    "operation": "debit",
    "type": "payout",
    "payout": {
      "type": "payout",
      "payoutId": "d62c1d19-d6ef-4a80-9d09-da3c111ab2a3"
    },
    "reference": "d62c1d19-d6ef-4a80-9d09-da3c111ab2a3",
    "status": "completed",
    "amount": "100",
    "currency": "EUR",
    "balance": {
      "before": "899999799",
      "after": "899999798"
    },
    "sender": {
      "name": "John Doe",
      "country": "DK",
      "account": {
        "accountIdentifiers": {
          "iban": "DK6250511424658332"
        },
        "country": "DK"
      },
      "virtualAccount": {
        "accountIdentifiers": {
          "iban": "DK6950511877968694"
        },
        "virtualAccountId": "74570dbb-ac26-43c8-aca9-3b5e9ff08893",
        "country": "DK"
      },
      "taxIdentificationNumber": "",
      "address": "Long str. 1/2 London UK"
    },
    "beneficiary": {
      "name": "Jane Doe",
      "country": "DK",
      "email": "jane.doe@example.com",
      "account": {
        "accountIdentifiers": {
          "bic": "BIGBPLPW",
          "iban": "DE07500105176551562526"
        },
        "country": "DK"
      },
      "taxIdentificationNumber": "",
      "address": "Lange Strasse 2 Berlin DE"
    }
  }
]