#aw-shreyas_api
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1352223904063815751
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi ๐ no, that isn't possible. You will need to filter down to just the fields you want on your end after getting the response.
Ohh okay, maybe a feature that can be kept in mind for future, since doing that will significantly increase the response time I think.
Actually I have large amount of customer data like 200k customers, do you suggest any best practices ?
In what regards?
How to fetch these many records quickly with customers API ? like for now there is a limit that at a time only 100 customers can be fetched.
Yup, you can only fetch 100 at a time. But we do offer auto-pagination in most of our libraries to abstract away the pagination logic:
https://docs.stripe.com/api/pagination/auto
If you have a data warehouse, we also offer functionality that allows you to sync your Stripe objects with your data warehouse:
https://docs.stripe.com/stripe-data/access-data-in-warehouse
That is okay, but in the core of auto pagination it is still call 100 customers at a time rite ?
Yes
Or if you want a more push-based approach rather than polling our API, you can use webhook endpoints to receive Events when triggering actions happen in your Stripe account:
https://docs.stripe.com/webhooks
This is not supported on our side ๐ฆ