Closed AndreasReiff closed 1 year ago
Payment method list should have separate entry for VISA and Dankort to selected by customer. Merchant needs to give these choices to end users.
// Exclude coBrandedDankort scheme from supported card scheme list. var cardPayment = PaymentProcess.CardPayment( withMerchant: merchantDetails, Set.of(CardScheme.coBrandedDankort), amount: amountInCents, currency: currencyCode, cardPaymentRegistration: CardPaymentRegistration);
By Default, Dankort is used.
How do we include the separated VISA and Dankort in the Payment method list? Does each card have a destinct panhash from NetAxept?
PaymentProcess.CardPayment is not an EasyPayment is it? PaymentProcess.cardTokenPayment is (as i've understood) an EasyPayment and it is NOT possible to include Set.of(CardScheme.coBrandedDankort) in that type of payment. How do we force it there?
@AndreasReiff For saved card, card selection is not possible. Panhash is unique for each saved card and it is received from Netaxept.
@Miss-PiA just to be totally clear.
1) If we use PaymentProcess.CardPayment with Set.of(CardScheme.coBrandedDankort) then the NetAxept SDK will promt the user to select either Dankort or VISA, right?
2) VISA/Dankort saved with PaymentProcess.cardTokenization (with setOf(CardScheme.coBrandedDankort) as parameter) will have a panhash (from NetAxept) for both the Dankort card AND the VISA card, right?
@AndreasReiff
If we use PaymentProcess.CardPayment with Set.of(CardScheme.coBrandedDankort) then the NetAxept SDK will promt the user to select either Dankort or VISA, right? No.
VISA/Dankort saved with PaymentProcess.cardTokenization (with setOf(CardScheme.coBrandedDankort) as parameter) will have a panhash (from NetAxept) for both the Dankort card AND the VISA card, right?
Hi, Closing this issue. Please re-open in case of doubt. Thanks
When initialising the SDK for card tokenisation(register card to use for Easy Payments) we use:
PiaSDK.startCardProcessActivity( ... PaymentProcess.cardTokenization( ..., setOf(CardScheme.coBrandedDankort), ... )
But the user is never promoted to select the card. The documentation states that we should force the user to select the card used. How do we force the user to select between Dankort and VISA when we have a coBranded Visa/Dankort we want to use for recurring payments(Easy Payments)?