developermypos/myPOS-Checkout-SDK-PHP

How to add ideal, mr Cash and bankcontact to the payment methods ?

Closed this issue · 1 comments

Hi,

Following the guide at https://developers.mypos.com/en/doc/online_payments/v1_4/147--api-call--ipcpurchase shows us the working example of https://imgur.com/a/JA0sdxX

But we are missing out on the payment methods Mister Cash, Ideal and bankcontact. How can we add those?. Also there is a lot of unnecessary information. We are looking for a solution like mollie, https://imgur.com/wNFtwLp

Just select your payment provider, pay and go back to your application.

Hi Jeroen,
We provide bancontact and ideal payments that way you are searching for
(in selectable methods inside the payment page)
Example: https://imgur.com/a/lcjL0xX

  1. To show ideal
    Currently you are using:
    $purchase->setCardTokenRequest(\Mypos\IPC\Purchase::CARD_TOKEN_REQUEST_PAY_AND_STORE)
    Whitch means that you want to tokenize client's card for further recurring payments, in that case you cannot have ideal payments simply because it's not card payment.
    You can stop card tokenization when you replace setCardTokenRequest method value with:
    $purchase->setCardTokenRequest(\Mypos\IPC\Purchase::CARD_TOKEN_REQUEST_NONE);
    In that way you can use ideal payments and will be shown

  2. To show bancontact
    You are currently using sanbox (test) enviroment, right now we don't show bancontact payment there, it will be visible when you migrate on production enviroment.

For any further questions and issues with your integration please contact us here:
https://developers.mypos.com/en/contacts

Or directly send us email here:
integrations@mypos.com