Skip to content

Commit

Permalink
Docs 4531 (#3248)
Browse files Browse the repository at this point in the history
* DOCS-4531: Do not be redirected when preselecting iDeal

* DOCS-4531: Do not be redirected when preselecting iDeal

* DOCS-4531: Do not be redirected when preselecting iDeal

* DOCS-4531: Do not be redirected when preselecting iDeal
  • Loading branch information
JesseSnnt authored Feb 12, 2025
1 parent d83a620 commit 2806a6f
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions content/payment-methods/ideal.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,13 +148,20 @@ iDEAL supports a number of Dutch <<glossary:issuers>>:

## iDEAL redirection

For iDEAL redirect requests, the customer will be automatically redirected to the iDEAL payment page after clicking your payment link. You can disable this by adding the `show_pre` parameter and setting it to `true`.

For iDEAL redirect requests, the customer will be automatically redirected to the iDEAL payment page after clicking your payment link. To disable this automatic redirection, you can modify the `payment_options` parameter of your payment request to include the following parameters:


#### Example
```json
{
"payment_options": {
"close_window": false
"close_window": false,
"gateway": {
"IDEAL": {
"show_pre": true
}
}
},
"customer": {
"locale": "en_US",
Expand All @@ -165,11 +172,7 @@ For iDEAL redirect requests, the customer will be automatically redirected to th
},
"days_active": 30,
"seconds_active": 2592000,
"gateway": {
"IDEAL": {
"show_pre": true
}
},
"gateway":"IDEAL",
"type": "redirect",
"order_id": "test-order-0001",
"currency": "EUR",
Expand Down

0 comments on commit 2806a6f

Please sign in to comment.