EPS Payment Integration
EPS (e-payment standard) is an online bank-transfer method used in Austria. The customer selects their bank and approves the payment in their own online-banking environment. This guide explains how to accept EPS payments with the Netvalve Payment Gateway.
| Customer country | Currency | paymentOption |
|---|---|---|
| Austria (AT) | EUR | apm_eps |
The order currency must be EUR for EPS to be offered.
For the shared redirect flow, webhook handling, and Checkout SDK notes, see the European Payment Methods overview.
How to offer EPS
Contact the Netvalve team to enable EPS on your account before going live.
Step 1 — Create the order
Send a POST request to the Create Order endpoint with paymentOption set to "apm_eps" and the order currency set to EUR.
{
"amount": 44.99,
"currency": "EUR",
"siteId": "f76fb7ed-3312-4791-a216-45918f899271",
"clientOrderId": "{{clientOrderId}}",
"orderDesc": "Order #12345",
"successUrl": "https://merchantsite.com/success.html",
"cancelUrl": "https://merchantsite.com/cancel.html",
"failedUrl": "https://merchantsite.com/failed.html",
"pendingUrl": "https://merchantsite.com/pending.html",
"paymentOption": "apm_eps",
"customerDetails": {
"customerAddress": "1 Test Street",
"customerCity": "Vienna",
"customerCountryCode": "AT",
"customerEmail": "customer@example.com",
"customerIp": "123.123.123.123",
"customerName": "Anna",
"customerLastName": "Gruber",
"customerPhone": "800-1234567",
"customerZipCode": "1010"
}
}
paymentOption accepts a comma-separated list. For example, "card,apm_eps" shows both card and EPS on the hosted page.
Step 2 — Redirect and handle the outcome
On success the response contains a redirectUrl (verify responseCode === "GTW_1000" first). Send the customer there; Netvalve takes them to their bank to authorise, then returns them to one of your URLs:
| Outcome | Redirect target |
|---|---|
| Payment succeeded | successUrl |
| Customer cancelled | cancelUrl |
| Payment failed | failedUrl |
| Payment pending | pendingUrl |
Treat the webhook or an Inquiry poll as the source of truth for the final result.
Sandbox testing
Create the order against the Sandbox / UAT base URL and follow the redirectUrl. The test flow is in German and has two steps — logging in is not enough on its own.
- Log in. Select bank PSA BANK GROUP, then enter the sandbox test login. Contact the Netvalve team for the test username and password.
- Authorise the transfer (eps Überweisung: autorisieren). Click TAN ANFORDERN to request a TAN, copy the TAN shown under Ihr TAN, paste it into the TAN Hier eintragen field, and click TAN SENDEN to confirm.
- Check that the customer lands on the matching return URL and that your webhook records the same result.
If you stop after step 1, the payment is never authorised and the transaction will not succeed. Complete the TAN step for a successful test payment.
Keep EPS test transactions under €5, and do not run automated or stress tests against the test bank — it is a shared test system.
See Testing in sandbox for the shared setup and how to test the pending path.
Related resources
| Resource | Link |
|---|---|
| European Payment Methods overview | Overview |
| Hosted Payment Page guide | Hosted Payment Page |
| Swagger API reference | API Reference |
| Webhook Message guide | Webhook Message |
| Error Codes reference | Error Codes |