#MetalMonk
1 messages · Page 1 of 1 (latest)
Not exactly, but you could calculate it. You could list all invoices with a status of paid: https://stripe.com/docs/api/invoices/list#list_invoices-status for a particular subscription: https://stripe.com/docs/api/invoices/list#list_invoices-subscription and then calculate the revenue based off of the returned results
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Awesome, I was wondering if invoices were the way for this. Thank you!
No problem
I have one more related question. When I retrieve subscriptions it's a list.
Can my customer have more than one subscirption? OR just multiple items
When I add a subscription product it adds a subscription item to their existing subscription object. So I wasn't sure if they could have more than one subsciption object per customer.
Yes it's possible to have more than 1 subscription per customer
There's no restriction on that
Ok thanks for the help!