iDeal
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".
We accept the following banks:
Bank code | Bank name |
---|---|
BUNQNL2A | Bunq |
INGBNL2A | Ing |
KNABNL2H | Knab |
RABONL2U | Rabobank |
RBRBNL21 | RegioBank |
SNSBNL2A | SNS Bank |
TRIONL2U | Triodos Bank |
ABNANL2A | ABN AMRO |
FVLBNL22 | Van Lanschot |
ASNBNL21 | ASN |
HANDNL2A | Handelsbanken |
REVOLT21 | Revolut |
curl --request POST \
--url https://gateway.paybyrd.com/api/v2/payment \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'x-api-key: {{YOUR_API_KEY_HERE}}' \
--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"
}
Updated 10 days ago
What’s Next