Accounts

Retrieve auth data

The endpoint retrieves a list of connected financial accounts, including their bank identification numbers.

get/v1/links/{link_id}/auth/

Query parameters

account_idsstring

Comma-separated list of account IDs to filter

Response

Example response

{
  "accounts": [
    {
      "id": "24d7e80942ce4ad58a93f70ce4115f5c",
      "created_at": "2022-05-04T11:30:00Z",
      "updated_at": "2022-05-04T12:00:00Z",
      "type": "CHECKING",
      "subtype": "MONEY_MARKET",
      "mask": "6789",
      "nickname": "My account",
      "balances": {
        "currency_code": "USD",
        "balance": "100.00",
        "available_balance": "50.99",
        "credit_limit": "200.00"
      },
      "provider": "truv",
      "provider_name": "Truv Bank",
      "numbers": {
        "ACH": [
          {
            "account_number": "16002600",
            "routing_number": "123456789",
            "is_tokenized_account_number": true
          }
        ],
        "RTP": [
          {
            "account_number": "16002600",
            "routing_number": "123456789",
            "is_tokenized_account_number": true
          }
        ],
        "OTHERS": [
          {
            "account_number": "16002600",
            "routing_number": "123456789",
            "is_tokenized_account_number": true
          }
        ]
      }
    }
  ]
}

Changes

Changed in 2 of the 11 revisions of this API.23

    • the accounts/items/balances/available_balance response's property pattern ^-?\d{1,10}\.\d{2}$ was added for the status 200

      response-property-pattern-added

    • the accounts/items/balances/balance response's property pattern ^-?\d{1,10}\.\d{2}$ was added for the status 200

      response-property-pattern-added

    • the accounts/items/balances/credit_limit response's property pattern ^-?\d{1,10}\.\d{2}$ was added for the status 200

      response-property-pattern-added

    • the response property accounts/items/balances/currency_code became nullable for the status 200

      response-property-became-nullable

    • the response property accounts/items/mask became nullable for the status 200

      response-property-became-nullable