Accounts APITrusted accounts

List of trusted accounts.

GET
/trusted-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
active?boolean

Find only active/inactive trusted accounts.

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

curl -X GET "https://accounts.sandbox.volt.io/trusted-accounts" \  -H "X-Volt-Api-Version: 1"
[
  {
    "id": "3400e469-5892-4f51-8e5f-6f2ad7b6f345",
    "accountHolder": {
      "legalName": "string",
      "address": {
        "addressLine1": "string",
        "addressLine2": "string",
        "city": "string",
        "postalCode": "string",
        "country": "DE"
      },
      "ultimateBeneficialOwners": [
        {
          "firstName": "string",
          "lastName": "string"
        }
      ]
    },
    "accountName": "my_gbp_trusted_account",
    "customerId": "40bb9716-fb00-484e-b4a2-eb3a220b3906",
    "identifications": [
      {
        "iban": "PL61109010140000071219812874",
        "swiftBic": "WBKPPLPP"
      }
    ],
    "currencyCode": "EUR",
    "country": "DE",
    "active": true
  }
]