#hunta8992
1 messages · Page 1 of 1 (latest)
Hello
Yep you can do this either from changing the PaymentMethods in your settings at https://dashboard.stripe.com/test/settings/payment_methods or you can set payment_method_types explicitly when you create the PaymentIntent: https://stripe.com/docs/api/payment_intents/create#create_payment_intent-payment_method_types
dashboard settings does not work correctly in test mode
About payment_method_types
in Java SDK I see only methods addAllPaymentMethodType() and addPaymentMethodType() in the
PaymentIntentCreateParams object.
Seems like it does not ovverride settings from dashboard and those other methods still appears
Can you provide me the PaymentIntent ID that you are testing with where you explicitly set payment_method_types?
is addAllPaymentMethodType() in java SDK correct reference for this field?
Yes or you should be able to use addPaymentMethodType() since you just want card
thank you, after further investigation we found a problem on our side