I’m using Render’s Stripe app that exports Stripe data to a Render postgres database: Stripe App Marketplace
It’s pretty cool! However, it looks like it only syncs data about active and past_due subscriptions:
stripe_22o9=> select distinct status from stripe_subscriptions;
status
----------
past_due
active
(2 rows)
Is it possible to configure it to also include cancelled subscriptions? I’d like to run analysis on churn rates, and join the Stripe data to our own line-of-business data to look for patterns in users who are likely to churn vs users who are likely to retain.