Number of APIs: 9
Versions 1 and 2 of the Transfers API are deprecated. If you are just starting your implementation, use the latest version. This API provides endpoints that you can use to transfer funds, whether when paying out to a transfer instrument for marketplaces or platforms, sending funds to third parties for users with business bank accounts, or to request a payout for a grant offer. The API also supports use cases for getting transactions for business bank accounts and getting outstanding balances for one or more grants on your platform. 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: To use the Transfers API, you need an additional role for your API credential. Transfers must also be enabled for the source balance account. Your Adyen contact will set up the roles and permissions for you. The Transfers 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 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...
Roles and permissions
Versioning
vXX
, where XX is the version number.
https://balanceplatform-api-test.adyen.com/btl/v4/transfers
Going live
https://balanceplatform-api-live.adyen.com/btl/v4
.
POST {{baseUrl}}/transfers/:transferId/returns
GET {{baseUrl}}/grants
GET {{baseUrl}}/transfers?createdSince=2013-10-20T19:20:30+01:00&createdUntil=2013-10-20T19:20:30+01:00
POST {{baseUrl}}/transfers
GET {{baseUrl}}/transfers/:id
POST {{baseUrl}}/grants
GET {{baseUrl}}/grants/:id
GET {{baseUrl}}/transactions/:id
ENDPOINTS