#loic_api
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/1250369035699486730
📝 Have more to share? Add details, code, screenshots, videos, etc. below.
My full message was :
Hello,
I'm trying to get these answers through the sales service, but they haven't responded…
I am commissioned by an event company to design their registration tool, including the checkout process.
We have a website that allows users to register for D debates out of 60 debates, spread over 2 days. The event program enables users to add their chosen debates to their cart, and the user will pay D debates x E euros via Stripe.
I need Stripe to:
- Integrate seamlessly into the website (CSS) at the end of the checkout process. We will pass the already collected customer information, their cart, and the total amount to be charged. (I know this is possible, it's a rhetorical question)
- Allow users to make a donation at the time of payment, within the Stripe module. A single financial transaction for two items:
Purchased debates (with VAT) + Donation (no VAT). Is this possible? Or should I ask for a donation earlier in my checkout process and pass the donation amount (without VAT) to Stripe at the same time as the cart value? - Allow users to choose to receive an invoice for their purchase. Does Stripe create and send this invoice?
- Our checkout process collects customer information (Name, first name, email, address, list of debates, distance traveled to the event, consent to share information with a third party...). Can we pass these informations to Stripe to retrieve it in the backend?
- Does Stripe’s backend allow exporting all the transactions (with customer's infos) to CSV? If so, what information can be exported?
Thank you for taking the time to read this, and I hope you can provide answers so I can complete my design.
Best regards,
Loic
Hi, I can answer the specific technical questions here:
- Yes, if you use Stripe Checkout, you can provide a list of items and configure a desired tax behavior. You can create a Price/item that allows customers to choose what to pay.
- Yes, you can configure sending a receipt after the purchase.
- Yes, you can set any metadata on the Checkout Session object.
- You can generate a report on Stripe Dashboard, or retrieve all/each payment via API.
Wow! Stripe gives me only "yes, it does what you want"!
Thank you for theses answers.
Happy to help.