Skip to main content

Account Management Flow

This document describes how to list, create, and view customer accounts.


📄 List Customer Accounts

Retrieve all accounts associated with a specific customer:

GET /api/core/customers/{customerId}/accounts
See: Get Customer Accounts


🏦 Create an Additional Account

Create a new account for a customer:

POST /api/core/customers/{customerId}/accounts
See: Post Create Account

Guidelines:

  • Only one account per currency per customer is allowed.
  • Accounts can only be created in currencies supported by the parent entity.

🔍 View Account Details

Retrieve details for a specific account:

GET /api/core/customers/{customerId}/accounts/{accountId}
See: Get Customer Account Details