Skip to content

iDEAL

Last updated: 14th July 2022

Start accepting payments using iDEAL, a favorite online payment method in The Netherlands.

iDEAL payments are made through direct online transfer from the customer's bank account to your merchant bank account. Customers can use their mobile banking app or online banking environment. As soon as a payment is made, iDEAL sends you an online payment guarantee so you can deliver goods and services right away.

To start accepting iDEAL payments, please contact your Customer Success Manager.


Overview

iDEAL payments follow a this process:


Get a list of supported issuers

Use the following request to get an up-to-date list of all issuers supporting iDEAL payments. To get a detailed view of all required and optional fields, see our API reference.

Endpoints

    get

    https://api.checkout.com/ideal-external/issuers

    Response example

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    {
    "countries": [
    {
    "name": "Nederland",
    "issuers": [
    {
    "bic": "INGBNL2A",
    "name": "Issuer Simulation V3 - ING"
    },
    {
    "bic": "RABONL2U",
    "name": "Issuer Simulation V3 - RABO"
    }
    ]
    }
    ],
    "_links": {
    "self": {
    "href": "https://sbapi.ckotech.co/ideal-external-api/issuers"
    }
    }
    }

    Request a payment

    Use the details below to set up your request. To get a detailed view of all required and optional fields, see our API reference.

    Endpoints

      post

      https://api.checkout.com/payments

      Request example

      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      {
      "source": {
      "type": "ideal",
      "bic":"INGBNL2A",
      "description": "ORD50234E89",
      "language": "nl"
      },
      "amount": 2000,
      "currency": "EUR"
      }

      If a customer ID or email is not provided in the request, then we automatically create a customer profile and return the customer id in the response.

      Response example

      If you receive a 202 Success response with a payment id and a status field set to Pending, your request was successful.

      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      {
      "id": "pay_yndlioum4gau3oizxihvzdgp4i",
      "status": "Pending",
      "customer": {
      "id": "cus_erquvsbcz2xunm5rrwd5clyfiy"
      },
      "_links": {
      "self": {
      "href": "https://api.sandbox.checkout.com/payments/pay_yndlioum4gau3oizxihvzdgp4i"
      },
      "redirect": {
      "href": "https://sandbox.checkout.com/LP.Core/api/payment/108659"
      }
      }
      }

      Redirect the customer

      Redirect your customer to the redirect link’s href in the above response. The redirect transfers the customer to their bank's website where they are required to enter their authorization details; if successful, the payment can be approved.

      For security reasons, iDEAL forbids using custom-made in-app browsers for redirection. We recommend that you open the device’s default browser to display the redirect. If you do want to use an in-app web view, you must use SFSafariViewController for iOS or Chrome Custom Tabs for Android.

      Once completed, the customer is transferred to your predefined success or failure URL. Confirmation of an iDEAL payment is communicated only through webhooks. When you receive a payment_captured webhook notification, the transaction has been completed successfully. Until the payment_captured webhook is received (response code 10000), all payments are labeled as Pending.


      Get details about a payment

      You can use the id found in the payment response, or the cko-session-id from the success/failure URL (e.g., https://www.checkout.com/order/succeeded?cko-session-id=) to retrieve details about the payment. To get a detailed view of all required and optional fields, see our API reference.

      The cko-session-id expires 15 minutes after being created.

      Endpoints

        get

        https://api.checkout.com/payments/{id}

        Response example

        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        17
        18
        19
        20
        21
        22
        23
        24
        25
        26
        27
        28
        29
        30
        31
        32
        33
        {
        "id": "pay_gx2pyzir3nzuhfmz7djlrxuhre",
        "requested_on": "2019-03-01T09:21:08Z",
        "source": {
        "type": "ideal",
        "description": "iDEAL Demo Payment",
        "bic": "INGBNL2A",
        "iban": "NL53INGB0654422370",
        "account_holder_name": "Hr E G H Küppers en/of MW M.J. Küppers-Veeneman"
        },
        "amount": 100,
        "currency": "EUR",
        "payment_type": "Regular",
        "status": "Captured",
        "approved": true,
        "risk": {
        "flagged": false
        },
        "customer": {
        "id": "cus_smscm3h2nqpe3obmau4djsqfam"
        },
        "_links": {
        "self": {
        "href": "https://api.sandbox.checkout.com/payments/pay_gx2pyzir3nzuhfmz7djlrxuhre"
        },
        "actions": {
        "href": "https://api.sandbox.checkout.com/payments/pay_gx2pyzir3nzuhfmz7djlrxuhre/actions"
        },
        "refund": {
        "href": "https://api.sandbox.checkout.com/payments/pay_gx2pyzir3nzuhfmz7djlrxuhre/refunds"
        }
        }
        }

        Cancel a payment

        If the customer fails to complete their payment, we will automatically void the payment in 10 minutes and send a payment_expired webhook.

        If the customer cancels their payment, we will send a payment_canceled webhook.


        Webhooks

        When using iDEAL, you may receive the following webhooks.

        WebhookDescription

        payment_pending

        Occurs when a payment request has successfully initiated.

        payment_capture_pending

        Occurs when the customer has approved the payment on the banking page.

        payment_captured

        Occurs when a capture is successful.

        payment_capture_declined

        Occurs when a capture is declined.

        payment_canceled

        Occurs when the customer has canceled the payment or the payment has failed.

        payment_expired

        Occurs when the payment has expired.

        payment_refund_pending

        Occurs when a refund request has successfully initiated.

        payment_refunded

        Occurs when a refund is successful.

        payment_refund_declined

        Occurs when a refund is declined.


        Refund a payment

        iDEAL supports both partial and full refunds. You can refund a payment through the Dashboard or using the refund endpoint of the Unified Payments API.


        Testing iDEAL

        To start testing, you'll need to:

        • create a test account, and
        • contact your Customer Success Manager or integrations engineer to activate iDEAL payments in the sandbox environment.

        Test a payment request

        1. Create an iDEAL transaction as above, following the redirect link in the response to the bank's website.
        2. Select Confirm transaction. You should then be redirected to your predefined success URL.

        When you test a payment refund, the transaction is likely to remain in a deferred refund state. Contact us at integration@checkout.com to request triggering a simulation batch job that ensures the completion of the refund.


        Simulate payment states

        In the sandbox environment, you can test different payment states by entering one of the following values in the amount field of your payment request.

        `amount` valueSimulated status

        200

        Canceled

        300

        Expired

        400

        Pending

        500

        Failure on the iDEAL test environment