#luismota
1 messages · Page 1 of 1 (latest)
Not currently possible, you'd need to loop through them in your own integration/code
I've done that, using auto pagination, but that is very time consuming
Only way right now I'm afraid!
isn't there a way to query the data by the canceled_at key, for example?
Not a supported Search field, no: https://stripe.com/docs/search#query-fields-for-subscriptions
ok, that was what I was afraid of
thanks @honest anchor
can a service such as Data Pipeline be a work around?
I guess you could cache data and query that yep
would that work for all of the data, or there is a limited time range on which I can read the data, like the events?
I guess that depends on how you implement the data store/cache
what do you mean
You're considering piping Subscription data from Stripe into a third-party store/cache, yes?
not really, I just want to read the data on demand, meaning that I would query the Data Pipeline to get the data that I want, and not need to store it anywhere else
I don't know what 'Data Pipeline' is
Assumed you were referencing some third-party service
no, I was referencing this stripe service, https://stripe.com/en-gb-us/data-pipeline
Our team doesn't really know anything about that
Also, it's reliant on a third-party service to actually store the data
Data Pipeline just facilitates the moving of the data
oh ok, so I would always need to fetch all the data from stripe and have my own storage
I'm not really sure what you're asking
what I mean is, I can't just have stripe providing the info that I want everytime, I would have to store it using a third party service, and then query that for the data
what I wanted was to query stripe directly without needing a third party service
If you want to use Data Pipeline, yes. The concept is that it can pipe your Stripe data into external services for you to query
You can, but the fields you want to use aren't currently supported. So you either need to:
- Filter locally.
- Pipe the data into another store (maybe via Data Pipeline) and query the fields there.