#Kosta
1 messages · Page 1 of 1 (latest)
Hi
What do you mean exactly by "impersonal" account ?
Without creating a "customer" on the platform.
Just enter your first and last name.
The customer field in the Invoice API is optional, so yes you can create an invoice without creating/having a Stripe Customer object:
https://stripe.com/docs/api/invoices/create#create_invoice-customer
Obviously, I will look.
But the main issue is the products.
each time we write a list of products in one line and put the total price.
i.e. the view is
- "product name 1, product name 2, product name 3" .......... price.
each time this line has its own content - and it makes no sense to create a new product on the platform.
Can you give more details what is the issue exactly there?
For each invoice, I need to create my own product. Which will never be used in other invoices. In half a year / year I will have several thousand records of "dead" products + extra steps when creating each invoice - "create a product, get its id, add id to invoice".
Ah I understand that, for invoices you need to have priceId or ProductId, so you need to create Products/Prices yeah unfortunately.
Understood.
you may have to make one product "Service Set", and below place a list of products using the "description" field.
Thanks a lot.
and below place a list of products using the "description" field.
list of Prices*
Thank you. topic can be closed.