#tiago-rodrigues_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/1293153620912504843
๐ 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.
- tiago-rodrigues_api, 3 days ago, 12 messages
I created a payment link, the customer accesses the link then makes the payment, and then what is the correct process to do?
When a customer makes the payment, it is registered in the customer list
As I said before, it has happened to do the same process and the customer stays as a guest
You can see there, in my previous post there is the problem of the customer having stayed as a guest and then it did not appear in the customer list
it is registered in the customer list
You mean created a Customer object on your Stripe account?
Yes
It depends, for one-off payments the customer can be a guest. But Subscriptions require a real Customer object, so Payment Links will create it automatically.
There's a parameter that explains this in more detail: https://docs.stripe.com/api/payment-link/create#create_payment_link-customer_creation
Can you tell me why the other time inserted the customer as a guest only?
Which time exactly? Can you share the Checkout Session ID?
This is a Request to GET customers.
I am asking for the ID of a Checkout Session from which a guest customer was created.
I don't know, if it appens again i will ask again with the checkout session
My guess is that it was a one-time payment so customer creation wasn't required.
๐ taking over for my colleague. Let me know if there's any follow-up Qs I can answer!
Maybe... There is always the possibility that it has been misconfigured
Thank you
Why is it possible to have multiple customers with the same email, to have subscriptions on the same product?
you can limit customers to one subscription by following this guide https://docs.stripe.com/payments/checkout/limit-subscriptions
Thank you