#dazzling_chipmunk_99376
1 messages · Page 1 of 1 (latest)
is there an api query that can give me a list of all customers for my business who have more than one active subscription
There's no single API endpoint for this unfortunately.
You can list all subscriptions which should have customer IDs (duplicated if customer has multiple subs)
But you can deduplicate the list
so basically i'd have to either list all customers, iterate thru them and collect all customers with more than 1 subscription, or list all subscriptions, iterate and count all occurrences of customer ids
Correct