#Zentren
1 messages ยท Page 1 of 1 (latest)
Can you share the in_xxx ID?
Yes for sure let me show you an example
in_1Mdr1BFWn64iS5yRok6CmZKw
We see that we got the data the user entered on stripe, but its not on the invoice
Which data specifically?
here we see the data the user entered for payment details
and we want those to appear on the invoice as well
Hmm, I don't think you're using Payment Links. That Invoice was generated via this request to create a Checkout Session: https://dashboard.stripe.com/logs/req_d2TIzrsUwcYunI
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
You passed the customer parameter, so the details in the Invoice are inherited from cus_NOeGwi0O81TWM4 object
If you want to use the details input on the session on the invoice, then you should pass the customer_update param: https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-customer_update
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Yep, that's a Checkout Session URL. Not a Payment Link
customer_update.address: 'always' should fix, yes
Thanks a lot, i will pass this information to the dev team
Any chance you can do it for a payment? ๐
Afraid not!
you too!