#nikita-saboo_dashboard_payment_method_types
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1474459448041930803
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Also using python SDK
๐ Looking at the invoice creation request https://dashboard.stripe.com/acct_1L08CfDjdxJUaev1/test/logs/req_iJffzuZTp9nZD4
It appears payment_method_types was set explicitly to card only
When payment_method_types are passed in the creation request automatic_payment_methods won't be used
so sending empty would enable it ?
I think that different payments get attached to the payment_intent when sending empty
If you create an invoice without passing payment_method_types we use automatic_payment_methods by default which determine the available payment method types automatically from you payment method configuration
payment_method_types will always override automatic_payment_methods when used.
Ok, so when creating an Invoice from the Dashboard, the Payment Methods Types selected by default in the UI are those derived from your Payment Method Configuration ala automatic_payament_methods If you make no changes to the types we will default to automatic_payment_methods behavior. If you make changes in the UI to the Payment Methods Types, we will pass a list of PMTs explicitly to payment_method_types
nikita-saboo_dashboard_payment_method_types