Stripe - Alternate Payments

The Stripe V2 gateway supports multiple alternate payment options:

  • Bancontact

  • iDEAL

  • SEPA

  • EPS

  • P24

  • TWINT

  • BLIK

  • Amazon Pay

  • Revolut Pay

  • MobilePay

STEP 1

Click the green Create Gateway button to save your changes and create the gateway. Note the ID of the gateway on the gateway list page, for use in Step 2.

STEP 2

The checkout page must be secure HTTPS. A non-secured call will be rejected. Pass the following parameters on the Import Order or Import Upsale API call

  • paySource = PREPAID

  • forceMerchantId = the Stripe V2 id from Step 1

  • redirectsTo = the url where the browser should redirect on a successful transaction

  • errorRedirectsTo = the url where the browser should redirect on a failed transaction

Then include the prepaidType parameter based on the payment option

  • Bancontact

    • prepaidType = BANCONTACT

  • Giropay

    • prepaidType = GIROPAY

  • iDEAL

    • prepaidType = IDEAL

  • SEPA

    • prepaidType = SEPA_DEBIT

  • EPS

    • prepaidType = EPS

  • P24

    • prepaidType = P24

  • SOFORT

    • prepaidType = SOFORT

  • TWINT

    • prepaidType = TWINT

  • BLIK

    • prepaidType = BLIK

  • Amazon Pay

    • prepaidType = AMAZONPAY

  • Revolut Pay

    • prepaidType = REVOLUTPAY

  • MobilePay

    • prepaidType = MOBILEPAY

Your checkout and upsale pages must support standard merchant redirect handling

Last updated