Adyen In-person Payment Demo Integration Demo
This demo shows developers how to use the Adyen Cloud Terminal API /terminal-api/sync
to make requests to your connected terminal.
The following implementations are included:
There are typically two ways to integrate in-person payments: local or cloud communications. To find out which solution (or hybrid) suits your needs, visit the following documentation page.
You can find the Terminal API documentation here.
This demo integrates the Adyen API Library for Java (GitHub | Docs). You can find the Terminal API documentation here.
- A terminal device and a test card from Adyen
- Adyen API Credentials
- Java 17
git clone https://github.com/adyen-examples/adyen-java-spring-online-payments.git
- API key
- HMAC Key
ADYEN_POS_POI_ID
: the unique ID of your payment terminal for the NEXO Sale to POI protocol.- Format:
[device model]-[serial number]
Example:V400m-123456789
- Format:
On Linux/Mac/Windows export/set the environment variables.
export ADYEN_API_KEY=yourAdyenApiKey
export ADYEN_HMAC_KEY=yourHmacKey
export ADYEN_POS_POI_ID=v400m-123456789
Alternatively, it's possible to define the variables in the application.properties
.
ADYEN_API_KEY=yourAdyenApiKey
ADYEN_HMAC_KEY=yourHmacKey
ADYEN_POS_POI_ID=v400m-123456789
cd in-person-payments-example
./gradlew bootRun
Webhooks deliver asynchronous notifications about the payment status and other events that are important to receive and process. You can find more information about webhooks in this blog post.
In the Customer Area under the Developers → Webhooks
section, create a new Standard webhook
.
A good practice is to set up basic authentication, copy the generated HMAC Key and set it as an environment variable. The application will use this to verify the HMAC signatures.
Make sure the webhook is enabled, so it can receive notifications.
This demo provides a simple webhook implementation exposed at /api/webhooks/notifications
that shows you how to receive, validate and consume the webhook payload.
The following webhooks events
should be enabled:
- AUTHORISATION
- CANCEL_OR_REFUND
- REFUND_FAILED
- REFUNDED_REVERSE
To make sure that the Adyen platform can reach your application, we have written a Webhooks Testing Guide that explores several options on how you can easily achieve this (e.g. running on localhost or cloud).
- Select the cloud terminal api integration.
- Select a table.
- Select pay to perform a payment.
- Complete the instructions on your terminal.
- Select reversal to refund the payment.
- If webhooks are set up, listen for the notifications to update the payment status (reversals/refunds happen asynchronously and may take some time to receive).