#matty-subs-list
1 messages · Page 1 of 1 (latest)
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I understand that I can use this to list the subs, get the product references and then group the subs for the products I need, but can I look up a product and just get those subscriptions for the product. Currently I have to look at every subscription to find those associated with the product which can be thousands of active subs.
you can list Subs by "Price" not Product
so for all Prices under a Product, you can list Subs that have those Prices: https://stripe.com/docs/api/subscriptions/list#list_subscriptions-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.
Well, how about that! I'm still trying to get a hang of the breakdown. That's what I was looking for! Thank you.