No momento, esta página não está disponível em português
Payment-method icon

iDEAL Component

Add iDEAL to an existing Components integration.

iDEAL is moving to a more centralized infrastructure to process payments.

Adyen merchants currently using iDEAL have a deadline of 01 April 2025 to complete the following:

  • Remove the list of banks from their checkout pages.
  • Redirect shoppers to the central iDEAL payment page.

This page explains how to add iDEAL to your existing Web Components integration.

Requirements

Select the server-side flow that your integration uses:

API reference

You do not need to send additional fields for iDEAL. To see optional fields that you can send for all payment methods, choose the endpoint you integrated:

Component configuration

Step 1: Create a DOM element

Create a DOM element on your checkout page, placing it where you want the payment method form to be rendered:

 <div id="ideal-container"></div>

Step 2: Create an instance of the Component

v6.0.0 or later

Create an instance of the Component, passing:

  • Your instance of AdyenCheckout.
const ideal = new Redirect(checkout, { type: 'ideal' }).mount('#ideal-container');

Use the create method of your AdyenCheckout instance, in this case checkout, to create the Component:

const idealComponent = checkout.create('ideal').mount('#ideal-container');

Optional configuration

With iDEAL 2.0, optional configurations are no longer available for Components.

Recurring payments

Adyen supports recurring payments for iDEAL through SEPA Direct Debit. To make recurring payments, you need to:

  1. Create a shopper token.
  2. Use the token to make future payments for the shopper.

1. Create a token

We strongly recommend that you request explicit permission from the shopper if you intend to make recurring SEPA payments. Being transparent about the payment schedule and the charged amount reduces the risk of chargebacks.

To create a token, include in your /payments request:

  • amount: The transaction must have a minimum value of EUR 0.01.
  • storePaymentMethod: true
  • shopperReference: your unique identifier for the shopper (minimum length three characters). Do not include personally identifiable information (PII), such as name or email address.
  • recurringProcessingModel: Subscription or UnscheduledCardOnFile

    From Checkout v70, recurringProcessingModel is a required parameter when creating or using a token.

When the payment is settled, you receive a RECURRING_CONTRACT webhook containing:

  • eventCode: RECURRING_CONTRACT
  • originalReference: The pspReference of the initial payment.
  • pspReference: This is the token that you need to make recurring payments for this shopper.

Make sure that your server is able to receive RECURRING_CONTRACT as part of your standard webhooks. You can enable the RECURRING_CONTRACT event code in the webhook settings page.

2. Make a payment with a token

For each recurring payment for this shopper, make a SEPA payment to the /payments endpoint, specifying:

For more information about the shopperInteraction and recurringProcessingModel fields, refer to Tokenization.