#cgy
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
You already specifed one in .setPaymentMethod(SessionCreateParams.PaymentMethodType.CARD.getValue())
But this line code only specify card or like google pay right ? Which card doesn't need a pm_xxx ?
Such as I have two credit cards all add on Stripe. Which Stripe charge from the card?
Stripe will charge the one that you specified in setPaymentMethod
But this line dosen't give card number or payment ID
Am I misunderstanding
Ah I didn't pay attention to the valud that you pass in, you should specify a payment method ID here (i.e., pm_)
Like what you did here .setPaymentMethod(bankCard.getCardId())
OK