#august_api
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/1402909008532344883
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
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.
- august_api, 10 hours ago, 13 messages
Hey, looking into this now, do give me some time
From what i am seeing in the payment intent creation request, it only specifies paypal under payment_method_types: https://dashboard.stripe.com/acct_1QriKqKdAPKJIUi0/logs/req_0qwunnpkVTzE1W
the field payment_method_types will only list the payment method types that this PaymentIntent is allowed to use
https://docs.stripe.com/api/payment_intents/object?#payment_intent_object-payment_method_types
In order for TWINT to be added as a payment method type, we have a few options:
- Add it into payment_method_types field:
"paypal", "twint
],```
2. Use Dynamic Payment Methods :
Which includes the removal of `payment_method_types` fields and add `automatic_payment_methods.enabled=true`
https://docs.stripe.com/api/payment_intents/object?api-version=2025-07-30.preview&rds=1#payment_intent_object-automatic_payment_methods
3. If Odoo is the one that controls the payment method shown, then you would need to contact them to ensure it gets shown.