#tomh0027
1 messages · Page 1 of 1 (latest)
No, the payments will not be associated with the Product, so I would not expect the dashboard to associate the two.
What you may want to do instead, is create a one-time Invoice.
does it work with price id?
Yes
can you give me some doc link?
This is a reasonable place to start, it has links to our various guides for creating and handling Invoices:
https://stripe.com/docs/invoicing
If you have more specific requirements or context about the type of integration you'd like to set up, I may be able to point to a more specific guide.
so what I am going to do is straight forward
let users buy premade one time product(using price ID) on my React application
and I should be able to see the customers who purchased the one time product
Seems straight-forward enough, I believe any of the Invoice flows would work for that. I recommend taking a look through the various options and see which one looks like a good fit for your flow.
I can't find any parameter to pass price id when create invoice
https://stripe.com/docs/api/invoices/create
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
For invoices, you create the line items separately. The Price is passed in when creating items https://stripe.com/docs/api/invoiceitems/create#create_invoiceitem-price
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
what do I have to do after create invoice item?