#Nick-subscriptions
1 messages · Page 1 of 1 (latest)
I'll add: I've tried with both the Stripe CLI and the Python library, both give the same result
Do you have an example request ID I can take a look at?
Here's an example subscription. https://dashboard.stripe.com/subscriptions/sub_IPL7y0gtJ9ViJA I don't think it logs 404 events AFAICT
stripe get sub_IPL7y0gtJ9ViJA --live is what returns the 404
The python invocation is:
stripe.Subscription.retrieve(id)
I see the problem - you're on a very old API version, which is before 2016-07-06 (https://stripe.com/docs/upgrades#2016-07-06). We made a change at that point to allow retrieve cancelled subscriptions by their ID
👍
Actually, another interesting workaround in case you don't want to update is to just check the sub ID and in case it returns 404, just consider it as invalid