A balance account is an API resource that contains information about the funds held by your user. To manage the balance accounts use the Configuration API.
This page contains instructions for common balance account operations. These operations are part of a larger process which includes verification and onboarding steps.
View balance accounts
To view the balance accounts and the available balances of your account holder, you can either use your Balance Platform Customer Area or make an API request.
To view balance accounts in your Balance Platform Customer Area:
-
Select Accounts & balances > Balance accounts.
-
Select a Balance account ID to view more details, such as the available balances.
Alternatively, enter a balance account ID in the Search menu to find a balance account.
Update a balance account
To update a balance account, make a PATCH /balanceAccounts/{id} request. The following example shows how to update the description of a balance account.
curl https://balanceplatform-api-test.adyen.com/bcl/v2/balanceAccounts/BA00000000000000000000001 \ -H 'x-api-key: ADYEN_BALANCE_PLATFORM_API_KEY' \ -H 'content-type: application/json' \ -X PATCH \ -d '{ "description":"Balance account for new business" }'
Close a balance account
In some scenarios, you might want to close an account holder's balance account. For example, an account holder that has separate balance accounts for their businesses might want to close one of their businesses.
To permanently close a balance account:
- Check if the balance account has zero balance. You can only close an empty balance account, so if there are funds left, you must transfer any remaining balance to another balance account.
- Close a balance account by updating the balance account and setting the
status
to Closed.
If an account holder discontinues their contractual relationship with your issuing, you can also permanently deactivate the account holder.