#Jonas Reif
1 messages ยท Page 1 of 1 (latest)
Hi there!
Where is the charge coming from? A Checkout Session, an Invoice, something else?
Charge could be created either via Invoice, or via Checkout Session, or via Dashboard, or via PaymentLink
So in general we are using stripe checkout.
But sometimes we also have to create subscriptions via dashboard manually.
Or sometimes we also send an invoice which the user has to pay
Or sometimes we are also using PaymentLinks
Our goal ist to create a list of all charges, where we then could filter which price or product generates which revenue.
The Charge Object will have a property that contains the PaymentIntent.
Then with the PaymentIntent you can either find the corresponding Invoice or Checkout Session, which will contain information about the product/price.
It would be really great if there would be an easy way to directly get a list of all charges by product via the dashboard. Maybe you could forward that as feature request or feedback? ๐
For one time payment prices:
As far as I can see I could search for a price_id in the dashboard and then export all payments for this price there.
Since we have multiple prices for a product it would be creat to be able to do it also for a product.
For subscriptions
For subscription price_ids you only get a list of subscriptions via the dashboard search. Would be also great to get a list of payments
Here on Discord we are not very familiar with the dashboard. So if you have questions about the dashboard, I would recommend to ask Stripe support directly: https://support.stripe.com/contact
alright thanks ๐