#max-third-vibes_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/1277674633620881492
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
this is my code:
Okay so we create a Sub for 1 customer in this request; https://dashboard.stripe.com/test/logs/req_TNB1GEwXCnV3oW
What are you actually trying to do here?
You created a Subscription with default_incomplete payment behavior
For a Customer that does not have a saved payment method
So this is totally normal that it winds up in a stauts of incomplete
Each of these Subscriptions has an Invoice with a Payment Intent in a status of requires_payment_method.
In our canonical Subscription docs, this Payment Intent is what you use to render the Payment Element for your Customer to collect payment method information.
https://docs.stripe.com/billing/subscriptions/build-subscriptions?platform=web&ui=elements
Would i be able to not create a new customer when a customer with specific email address already exists, and use existing customer?
Sure. You can use the Customer List API to search for Customer objects by email and then just re-use the first one in the list (or whichever makes sense for you).