#crsmith0511
1 messages · Page 1 of 1 (latest)
That will only send back 3 Subscriptions max
Subscriptions that are cancelled become deleted, so they don't show up in API calls if I recall correctly
oh yep i get the limit - just copied and pasted. has that changed recently about canceled subscriptions not returning?
I don't think so. Let me doa quick check of my work from earlier
Ah, okay. So I was wrong. Subscriptions that are canceled should still show up in the List All Subscriptions API calls
Okay - thank you that is super helpful to know!
If we archive a product and call stripe.subscriptions.list will the return the expired/cancelled subscriptions for archived products? We have stripe receipts returning for a user but when we call the stripe.subscriptions.list no subscriptions are coming back for a user who had the archived product as a sub
How many subscriptions are returned in that call?
No subscriptions from that call are being returned for the user. They do not have any active subscriptions, only a cancelled one that was from an archieved product
Are you passing the Customer ID into the request?
Also, you need to pass in status: 'canceled'
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Canceled subscriptions are not returned by default
We are not. I will try that out. Thank you for your help