Skip to main content
GET
/
customer
/
accounts
Get Client Accounts Signed
curl --request GET \
  --url https://api.example.com/customer/accounts \
  --header 'X-API-KEY: <x-api-key>' \
  --header 'X-API-NONCE: <x-api-nonce>' \
  --header 'X-API-SIGNATURE: <x-api-signature>' \
  --header 'X-API-TIMESTAMP: <x-api-timestamp>'
{
  "message": "<string>",
  "data": {
    "name": "1234",
    "dba_name": "1234",
    "accounts": [
      {
        "id": "1234",
        "account_number": "1234",
        "account_group": "1234",
        "account_title": "Customer account title"
      }
    ]
  }
}
Retrieve all accounts associated with a customer from the financial provider. This endpoint returns a list of accounts with their details including account numbers, types, and statuses.

Headers

X-API-SIGNATURE
string
required

Signature header

X-API-TIMESTAMP
integer
required

Timestamp header

X-API-NONCE
string
required

Nonce header

X-API-KEY
string
required

Account ID header

Response

Successful Response

message
string
required
data
ClientAccountResponse · object

Schema to serialize the account data.