#stefanmoona-customers-without-subscriptions
1 messages · Page 1 of 1 (latest)
Hey! There's no single API for this, no. You'd need to do some work in your app: https://stripe.com/docs/api/customers/object#customer_object-subscriptions
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
You'll need to expand the subscriptions field when listing all Customers: https://stripe.com/docs/api/expanding_objects
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Then you can filter accordingly
ah I missed the fact that you can expand subscriptions on the customers object
thanks!
Np!