Integrate our products into your software. Let's make payment happen together!
Look at all the possibilitiesA. Authorisation By Voice transaction allows you to pass an voiceReferralAID with a transaction to authorise the transaction.
The following code snippet demonstrates how you can perform a Authorisation By Voice.
String voiceReferralAID = "1234567" Payment payment = Payment .builder() .type(Payment.Type.AUTHORISATION_BY_VOICE) .amount(Money.EUR(10)) .voiceReferralAID(voiceReferralAID) .build(); PaymentApi paymentService = new PaymentService(); PaymentDelegate paymentDelegate = new PaymentDelegate() { ... }; paymentService.payment(terminal, payment, paymentDelegate);