#Matt11-subs-cancel-false
1 messages · Page 1 of 1 (latest)
Hi there! You can't really do this explicitly... you will want to list your Subs here using https://stripe.com/docs/api/subscriptions/list and then filter based on cancel_at_period_end being false.
In terms of the dates... what dates do you mean? The creation date of the Sub?
When you list you set the limit to 100: https://stripe.com/docs/api/subscriptions/list#list_subscriptions-limit. Then if you have more than 100 Subs you want to use auto-pagination. See: https://stripe.com/docs/api/pagination/auto
100 is the max limit but pagination allows you to programmatically retrieve as many as you need.
Give https://stripe.com/docs/videos/developer-foundations?video=pagination&lang=node a watch if you aren't familiar with how pagination works.
ok thank you very much!