#mrobjectoriented_docs
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/1288796959888375852
đ 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.
- mr_checkout-trial, 2 days ago, 7 messages
Do you have a checkout.session.completed event ID I can look at please
yup
Should be in the customer_details hash: https://docs.stripe.com/api/checkout/sessions/object#checkout_session_object-customer_details
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
cs_test_b1MHyiMHwcBilSq9BOWnNdVuCa53FmKhiyC2STqYmNBRlnGCcAbZpVv24N
I mean, its the name that I am passing in the checkout session generation
is there a way to tell Stripe to include a form to collect the name?
It does automatically for most payment methods I think, definitely card
I am not seeing any name in the webhook apart from honolulu3
Yes, because you passed the customer parameter so we don't overwrite that field unless you explicitly tell Checkout to: https://docs.stripe.com/api/checkout/sessions/create#create_checkout_session-customer_update-name
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
oo
If you don't set customer_update[name]: 'auto' then the name field collected on the page will be set on the Payment Method billing details, as explained on that SO link you shared
np