iDEAL

Dutch bank redirect payment method. The customer selects their bank and completes payment on the bank's page — no card details needed. Prism redirects to the bank via return_url.

const paymentClient = new PaymentClient(config);

const response = await paymentClient.authorize({
    merchantTransactionId: "txn_001",
    amount: { minorAmount: 1000, currency: Currency.EUR },
    paymentMethod: { ideal: {} },
    captureMethod: CaptureMethod.AUTOMATIC,
    address: { billingAddress: {} },
    authType: AuthenticationType.NO_THREE_DS,
    returnUrl: "https://example.com/return",
});

Last updated

Was this helpful?