Logo
Adyen API Documentation

Adyen MarketPay Fund Service

Number of APIs: 6


The MarketPay Funding API provides endpoints for managing the funds in MarketPay accounts. These management operations include actions such as the transfer of funds from one account to another, the payout of funds to an account holder, and the retrieval of balances in an account.

For further information on MarketPay fund management, please visit the MarketPay documentation.

Authentication

To connect to the MarketPay API, you must use basic authentication credentials of your web service user. If you don't have one, please contact the Adyen Support Team. Then use its credentials to authenticate your request, for example:

curl
-U "ws@MarketPlace.YourMarketPlace":"YourWsPassword" \
-H "Content-Type: application/json" \
...

Note that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/developers/development-re

Contact Support: Name: No Contact Email: email@example.com


1. Retrieve the balance(s) of an account holder.

POST {{baseUrl}}/accountHolderBalance



2. Retrieve a list of transactions.

POST {{baseUrl}}/accountHolderTransactionList



3. Disburse a specified amount from an account to the account holder.

POST {{baseUrl}}/payoutAccountHolder



4. Refund all transactions of an account since the most recent payout.

POST {{baseUrl}}/refundNotPaidOutTransfers



5. Designate an account to be the beneficiary of a separate account and transfer the benefactor's current balance to the beneficiary.

POST {{baseUrl}}/setupBeneficiary



6. Transfer funds from one platform account to another.

POST {{baseUrl}}/transferFunds



ENDPOINTS