Number of APIs: 46
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. Your Adyen contact will provide your API credential and an API key. To connect to the API, add an Alternatively, you can use the username and password to connect to the API using basic authentication. For example: The Configuration API supports versioning using a version suffix in the endpoint URL. This suffix has the following format: For example:
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 Authentication
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...
curl
-H "Content-Type: application/json" \n-U "ws@BalancePlatform.YOUR_BALANCE_PLATFORM":"YOUR_WS_PASSWORD" \n...
Versioning
vXX
, where XX is the version number.
https://balanceplatform-api-test.adyen.com/bcl/v2/accountHolders
Going live
https://balanceplatform-api-live.adyen.com/bcl/v2
.
GET {{baseUrl}}/balancePlatforms/:id
GET {{baseUrl}}/balancePlatforms/:id/accountHolders
GET {{baseUrl}}/grantOffers?accountHolderId=accountHolderId_example
GET {{baseUrl}}/grantOffers/:grantOfferId
GET {{baseUrl}}/networkTokens/:networkTokenId
PATCH {{baseUrl}}/networkTokens/:networkTokenId
POST {{baseUrl}}/accountHolders
GET {{baseUrl}}/accountHolders/:id
GET {{baseUrl}}/balanceAccounts/:id/paymentInstruments
ENDPOINTS