#jairo.paymefy
1 messages · Page 1 of 1 (latest)
Thanks! This is the request to create that Checkout Session: https://dashboard.stripe.com/test/logs/req_035j981Kt0P0qv
There you didn't set any payment method, so Stripe use your dashboard settings to display the payment method https://dashboard.stripe.com/test/settings/payment_methods
So you have two options:
- Disable all payment method on your Stripe dashboard, except cards
- Or change the way you create the Checkout Session, to include
payment_method_types: [ "card" ]https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-payment_method_types
yes, I just made ite using option 1
i completely disable everything except card payment
so In Mexico I only see cards, but in Spain I'm still seeing several payment methods
Can you share a new Checkout Session that you created where you see this?
Is the issue resolved?