Webhooks allow your server to automatically receive notifications about events in our system. Instead of periodically polling the API, you configure one endpoint and we send you an HTTP request for each important event.
To connect webhooks, you need:
curl -X POST \
https://pal-test.adyen.com/pal/servlet/BalanceControl/v1/balanceTransfer \
-H 'content-type: application/json' \
-H 'x-api-key: YOUR_API_KEY' \
-d '{"amount":{"value":50000,"currency":"EUR"},"description":"Your description for the transfer","fromMerchant":"MerchantAccount_NL","toMerchant":"MerchantAccount_DE","type":"debit"}'