#hoffemberg_api
1 messages ¡ Page 1 of 1 (latest)
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.
- hoffemberg_api, 23 hours ago, 35 messages
đ 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/1268337327395180628
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
You can't unfortunately. That being said, you could use Invoices without Checkout instead if you wanted to have this type of payment dynamic
Invoices can have negative Invoice Items that are labeled however you like
There's also the hosted Invoice page, which would make it easy to spin up an integration
It's similarly low-code, compared to Checkout
Well, the reason I shifted to Checkout is because I do not want to persist a bunch of products and prices in our users' dashboards, and then manually have to clean them up later.
Also, the invoiced do not have the thumbnail images of the line items, which I would like to have.
You wouldn't have to create more Prices/Products with Invoices. As for images, you're right, you can't add images, though you can customize logo, icon, and color: https://docs.stripe.com/invoicing/hosted-invoice-page#page-customization
Invoice features cost more, correct? Doesn't Stripe charge some fee for every paid invoice in addition to the regular POS fees? Would those fees be charged on the connected accounts?
I don't really have any context on fees unfortunately. Our support folks should though: https://support.stripe.com/contact
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
Okay, I'll go back to the invoicing and see if I can make it work. Thank you for your help.
I'm looking at the Invoice object docs right now, and I notice that when generating the invoice line items, the invoice items are asking for price and product ids, whuch suggests that they are being pulled from persisted data. You said above I wouldn't have to create persisted prices and products for invoicing. Am I misunderstanding?
The Invoice Items don't need Products and Prices, but the Invoice would
Specifically, the InvoiceItem.create() will take price_data, but the price_data requires a product id, so can't be done inline like the CheckoutSession.
It can take a Price/Product, but it doesn't have to
Our users are photographers who are generating unique products for their customers on our platform. Each time they generate an order they are generating different products and prices, so we are worried that their Stripe dashboards will become cluttered with products for each line item on each invoice that they generate. And then to mitigate this, we would have to pull the line items for each invoice after it's paid and archive them. Does this sound right?
Yup, sounds right to me