#mathieu_checkout-email
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! We typically respond in a few minutes, but in some cases we might need a bit more time (e.g., server's busy, you've got a complex question, etc.).
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can 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/1261324056096018516
๐ Have more to share? Add details, code, screenshots, videos, etc. below.
You can't unfortunately
Even if the paiement link is generated by API ? or others ?
Yeah you can see yourself: https://docs.stripe.com/api/payment_links/payment_links/create
There's no param to control this
Is it impossible to use a webhook coming from a payement link to retrieve an exact customer in my DB ?
Or the paiement Link can't be use with post-procesing webhook to do data sync
Payment links are checkout sessions under the hood so you can treat them the same for webhook purposes
I will check it, thank you
Hi there ๐ jumping in as my teammate needs to step away soon. If you want to force your customers to use an email address you already collected, using Checkout Sessions directly, rather than Payment Links, may be a better fit.
You can create a Customer object using the email address you collected, then create a Checkout Session specifically for that Customer. I believe the email field is prepopulated from the Customer object, and the locked from customer input, when you do so.
mathieu_checkout-email
Okay I will look for this, thank you !