#benjamin-ach-paymentelement
1 messages · Page 1 of 1 (latest)
Hello 👋
Do you have an example PaymentIntent ID that I can take a look at?
Sure -- one sec
pi_3M1ubmB9BKxiUI1I0j8clxHi
Oh okay, well now I'm seeing in our account the We've detected that you are not using Automatic Payment Methods message. That said, we are using the PaymentElement in our checkout flow.
Additional context: our checkout flow results in one of the following three stripe entities being created: a PaymentIntent, a Subscription, or a SetupIntent, depending on what user chooses and whether or not our system internally flags the transaction as possibly fraudulent. I can see in docs that for PI, I need to add automatic_payment_methods={"enabled": True},, but don't see an equivalent setting for Subscription and SetupIntent
benjamin-ach-paymentelement
that PaymentIntent is the result of a Subscription creation, which won't follow the same settings
what you can do is fill out https://stripe.com/docs/api/subscriptions/create#create_subscription-payment_settings-payment_method_types instead
got it, that makes sense. so when creating the subscription, if we only configure to use 'card', will that also enable wallet payments ? We'd like to be able to do that globally, but allow connected accounts to individually toggle wallets on/off.
yes card will also enable wallets. But you can disable wallets in PaymentElement if you want
Thanks. You're the best.