# Customer Accounts
source: https://developer.mastercard.com/open-finance-au/documentation/access-and-config/accounts/index.md

### Understanding Accounts {#understanding-accounts}

Customer account records have a lot of different data points that can be used in your application. There are a few important pieces of information to note that can be used to properly identify accounts you want to use in your application, and some data points that will help you best organize account data inside your application. Understanding how to manage these accounts is covered here.

### Key Account Record Fields {#key-account-record-fields}

|        Field         |                                                                                                                                Description                                                                                                                                 |
|----------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `id`                 | Store this unique account identifier for future account data retrieval and organization                                                                                                                                                                                    |
| `institutionId`      | The id of the Financial Institution. This is useful for organizing account by Financial Institution.                                                                                                                                                                       |
| `institutionLoginId` | This is the unique identifier for a set of accounts that are added under the set of login credentials. This is important to display accounts grouped by this identifier to give the end user the proper context to their accounts they added with their login credentials. |
| `Account Type`       | This will tell you the type of account. This can be useful for determining how you will use them in the app.                                                                                                                                                               |

#### Customer Account Operations {#customer-account-operations}

After a customer has added accounts, the list of accounts they have added can be retrieved, and removed using these operations.
Tip: Access to any customer account data requires the **Consent Receipt Id** the customer has given when linking these accounts . **Consent Receipt Id** is obtained through [Consent Notification](https://developer.mastercard.com/open-finance-au/documentation/consent/consent-notifications/index.md) as part of accounts linking.
API Reference: `GET /aggregation/v1/customers/{customerId}/accounts`


API Reference: `GET /aggregation/v1/customers/{customerId}/accounts/{accountId}`

#### Institution Login Operations {#institution-login-operations}


API Reference: `GET /aggregation/v1/customers/{customerId}/institutionLogins/{institutionLoginId}/accounts`

#### Customer Accounts By Institution {#customer-accounts-by-institution}


API Reference: `GET /aggregation/v1/customers/{customerId}/institutions/{institutionId}/accounts`

