#Guillaume--
1 messages · Page 1 of 1 (latest)
Hi there!
hi
I think the best way would be to loop through your customer IDs to get a list of all subscriptions. You can include customer in your request, as well as status if you need to filter for only a subset of subscriptions. https://stripe.com/docs/api/subscriptions/list
The customer parameter can be a list of ids?
No, it can only be one customer ID at a time. You'll need to loop through your list of IDs and make a call to list subscriptions per customer ID
You could also list all subscriptions and do the filtering on your end.
You may need to keep pagination in mind depending on the number of subscriptions you need to work with: https://stripe.com/docs/api/pagination