#warrenn1_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/1285706977288257577
📝 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.
- warrenn1_api, 32 minutes ago, 5 messages
- warrenn1_api, 6 days ago, 53 messages
Hello! Setup Intents and Payment Intents are low-level objects and do not have line items. See here for more details: https://youtu.be/CUAY6IQcVQM
Learn about the roles and capabilities of the objects that facilitate payments
00:00 Introduction
00:19 Charges
00:52 Payment Intents
01:50 Invoices
02:19 Subscriptions
02:55 Checkout Sessions
03:44 Payment Links
04:20 High-level objects overview
05:06 Entry point examples and use cases
06:16 Low-level object use cases
Go back to the Stripe do...
Thanks @proper pelican. I understand this. Is there a way to create a checkout session off session then and fufill it off session with a setup intent then?
No, that's not how Checkout Sessions or Setup Intents work. Checkout Sessions are for when your Customer is paying on-session. Setup Intents are only used to set up a payment method for future use, they're not used to actually pay anything or move money.
Can you tell me more about what you're trying to build so I can provide some recommendations?
People place bids. If they win the bid, I want to bill their card.
But I want the bill to include in it which items they bought/bid on etc. It makes me think invoices could work, but I am relatively new to stripe.
It sounds like you want Invoices, yeah: https://docs.stripe.com/invoicing
Well, Setup Intents + Invoicing.
The first step would be to set up their payment method for future use using this guide: https://docs.stripe.com/payments/save-and-reuse
Then, later, you would create an Invoice for them when it's time to actually pay.
You also have the option of waiting to collect payment details with the Invoice itself, if you want to have them pay it at that time.
Yeah. Ideally, when they place all their bids I would love them to authorize the purchase. Then in 8-12 weeks IF they win it, I charge them. This made me think invoicing could work, but I wanted to make sure I could do it all off session with card info (via setup intent).
Yep, you can do that.
Okay fantastic. Do you guys have a sample of this or not?
No, not for this specific scenario.
You'll need to combine things from the two guides I linked above.
Perfect I will give that a try and circle back later if there are any major difficulties.