Skip to main content

iDEAL

The full list of request body parameters and possible outcomes can be found here.

Request an Ideal payment#

RequestIdealSource source = RequestIdealSource.builder()        .bic()        .description()        .language()        .build();
PaymentRequest request = PaymentRequest.ideal(source, Currency.EUR, 10L);
PaymentResponse response = api.paymentsClient().requestAsync(request).get();

Get a list of supported issuers#

Get an up-to-date list of all issuers supporting iDEAL payments.

IssuerResponse issuers = api.idealClient().getIssuers();