Loading...
Accounts APIAccounts

List of accounts

GET
/accounts

Authorization

BearerAuth
AuthorizationBearer <token>

In: header

Query Parameters

limit?integer

Number of items to return per page (max 100).

Default25
Range1 <= value <= 100
page?integer

Page index for pagination.

Default1
Range1 <= value
currency[]?array<>

Filter by Currency.

active?boolean

Filter by Active.

Header Parameters

X-Volt-Api-Version*integer

Version of the API used. Currently, version 1 is the only version.

Value in1

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://accounts.sandbox.volt.io/accounts" \  -H "X-Volt-Api-Version: 1"
[
  {
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "currency": "EUR",
    "identifications": [
      {
        "iban": "PL61109010140000071219812874",
        "swiftBic": "WBKPPLPP"
      }
    ],
    "name": "string",
    "active": true,
    "status": "ACTIVE",
    "country": "DE",
    "balance": {
      "available": 0,
      "timestamp": "2019-08-24T14:15:22Z"
    },
    "type": "VOLT_ACCOUNT",
    "subType": "BUSINESS",
    "accountHolder": {
      "entityId": "40bb9716-fb00-484e-b4a2-eb3a220b3906",
      "legalName": "string"
    }
  }
]