#mcflyin619
1 messages · Page 1 of 1 (latest)
Sorry not fully follow. Can you provide your request id req_xxx from https://dashboard.stripe.com/test/logs ?
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
req_RSVJum3cbpa2bR
hi! I'm taking over this thread.
that's expected, product_data doesn't exist: https://stripe.com/docs/api/quotes/create#create_quote-line_items-price_data
basically its a one off line item that the connected account doesnt need to add as a product with a price id
so i will have to create a product with a price if they want to add one off line items?
a Product is mandatory yes, but for the Price you can keep using price_data if you want
ok so i will just have to add metas data for the name to display it
I'm not sure I understand. but sure you can add metadata if needed.
so i will have to add a product everytime for a quote even if its just a one time use?
correct
by can you clarify why you are using Quotes? it's quite rare to see people using this API
Interesting. Yea so my web app is for service companies (HVAC, electricians etc) and their customers sometimes may want a quote for work to be completed and i figured this would be an easy way to create a quote. Then they email a link to their customer which allows the customer to accept or decline the quote. And having it generate an invoice off the quote is very convenient for the businesses that use our web app.
i was just under the assumption i could create a custom line item like i do on invoices
i also thought i could send them like invoices as well, but had to make a slight work around. I may just end up creating my own flow for quotes that i can integrate into creating and invoice off of it
got it. yeah using Quotes can be tricky, it's often simpler to build something yourself or directly use Invoices/Subscriptions depending on your needs.
i know a lot of people use Quickbooks api for stuff like that but i wanted to avoid my customers from having to pay a monthly fee to quickbooks and my app so i figured the small price of Stripe would be better. Thanks again for the clarification