Configuration API (v2)

Number of APIs: 31

The Configuration API enables you to create a platform where you can onboard your users as account holders and create balance accounts, cards, and business accounts.

Authentication

Your Adyen contact will provide your API credential and an API key. To connect to the API, add an X-API-Key header with the API key as the value, for example:

curl
-H "Content-Type: application/json" \n-H "X-API-Key: YOUR_API_KEY" \n...

Alternatively, you can use the username and password to connect to the API using basic authentication. For example:

curl
-H "Content-Type: application/json" \n-U "ws@BalancePlatform.YOUR_BALANCE_PLATFORM":"YOUR_WS_PASSWORD" \n...

Versioning

The Configuration API supports versioning using a version suffix in the endpoint URL. This suffix has the following format: vXX, where XX is the version number.

For example: https://balanceplatform-api-test.adyen.com/bcl/v2/accountHolders

Going live

When going live, your Adyen contact will provide your API credential for the live environment. You can then use the API key or the username and password to send requests to https://balanceplatform-api-live.adyen.com/bcl/v2.

  1. Balance accounts-/balanceAccounts/{{balanceAccountId}}/sweeps - Get all sweeps for a balance account GET {{baseUrl}}/balanceAccounts/{{balanceAccountId}}/sweeps?offset=56&limit=56

  2. Platform-/balancePlatforms/{{id}} - Get a balance platform GET {{baseUrl}}/balancePlatforms/{{id}}

  3. Platform-/balancePlatforms/{{id}}/accountHolders - Get all account holders under a balance platform GET {{baseUrl}}/balancePlatforms/{{id}}/accountHolders?offset=56&limit=56

  4. Payment instruments-/paymentInstruments/{{id}}/transactionRules - Get all transaction rules for a payment instrument GET {{baseUrl}}/paymentInstruments/{{id}}/transactionRules

  5. Payment instruments-/paymentInstruments/{{id}} - Get a payment instrument GET {{baseUrl}}/paymentInstruments/{{id}}

  6. Grant offers-/grantOffers/{{grantOfferId}} - Get a grant offer GET {{baseUrl}}/grantOffers/{{grantOfferId}}

  7. Payment instrument groups-/paymentInstrumentGroups - Create a payment instrument group POST {{baseUrl}}/paymentInstrumentGroups

  8. Payment instrument groups-/paymentInstrumentGroups/{{id}} - Get a payment instrument group GET {{baseUrl}}/paymentInstrumentGroups/{{id}}

  9. Payment instrument groups-/paymentInstrumentGroups/{{id}}/transactionRules - Get all transaction rules for a payment instrument group GET {{baseUrl}}/paymentInstrumentGroups/{{id}}/transactionRules

  10. Account holders-/accountHolders/{{id}} - Get an account holder GET {{baseUrl}}/accountHolders/{{id}}