#hoffemberg_api

1 messages ¡ Page 1 of 1 (latest)

lime copperBOT
rare leafBOT
#

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.

lime copperBOT
#

👋 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.

bitter urchin
#

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

slender ocean
#

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.

bitter urchin
slender ocean
#

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?

bitter urchin
#

I don't really have any context on fees unfortunately. Our support folks should though: https://support.stripe.com/contact

slender ocean
#

Okay, I'll go back to the invoicing and see if I can make it work. Thank you for your help.

slender ocean
#

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?

bitter urchin
#

The Invoice Items don't need Products and Prices, but the Invoice would

slender ocean
#

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.

bitter urchin
#

It can take a Price/Product, but it doesn't have to

slender ocean
#

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?

bitter urchin
#

Yup, sounds right to me