iDEAL is an online payment method that enables consumers to pay online through their own bank. In addition to webshops, other organizations that are not part of the e-commerce market also offer iDEAL. iDEAL is increasingly used to pay energy bills, make donations to charities, buy mobile credits, pay local taxes, traffic fines, etc…

How it works

When choosing iDeal payment, we redirect the customer to their own online banking page, that way, it's possible to just login into your banking account and make the payment. As soon as the payment has been done, the customer will be redirected to Paybyrd's system, where we will check the transaction status and tell the good news: "Your payment was a success".

1206

We accept the following banks:

Bank codeBank name
BUNQNL2ABunq
INGBNL2AIng
KNABNL2HKnab
RABONL2URabobank
RBRBNL21RegioBank
SNSBNL2ASNS Bank
TRIONL2UTriodos Bank
ABNANL2AABN AMRO
FVLBNL22Van Lanschot
ASNBNL21ASN
HANDNL2AHandelsbanken
REVOLT21Revolut
curl --request POST \
  --url https://gateway.paybyrd.com/api/v2/payment \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: 5E37D19C-F99C-445F-8B77-1463EFC66C7B' \
  --data '
{  
    "type":"OnlineTransfer",
    "amount": "10.00",
    "currency": "EUR",
    "brand":"ideal",
    "bankIdentifierCode": "INGBNL2A"
}'
{
    "bankIdentifierCode": "INGBNL2A",
    "type": "OnlineTransfer",
    "currency": "EUR",
    "brand": "ideal",
    "action": {
        "type": "redirect",
        "url": "https://webapp-redirect-api-stg.azurewebsites.net/api/v1/Redirect/58d75973-87e3-4da7-b8f4-ab2bfb3ea9da"
    },
    "code": "BYRD207",
    "description": "Pending redirect",
    "transactionId": "58d75973-87e3-4da7-b8f4-ab2bfb3ea9da",
    "amount": "10.00"
}