#arcware - listing objects
1 messages · Page 1 of 1 (latest)
Hi there! Just to be clear, does this mean you're using the List endpoints (e.g. listing all invoices - https://stripe.com/docs/api/invoices/list)?
@dense wolf yes, correct
Hm, listing all objects of a given type can become very cumbersome as your business grows. Since your team is interested in changes, I recommend looking into webhooks instead
You can listen for invoice.updated events: https://stripe.com/docs/api/events/types#event_types-invoice.updated
I recommend reading through this if you haven't already: https://stripe.com/docs/webhooks
yep thanks, we have webhooks in place... I knew that was a solution to my question, but was wondering if there was another way from more of a bulk perspective instead of the webhook-event-at-a-time
Ah, I see. The list endpoints are the other way, yes. The filtering might be tricky though, since you can't really filter by updated date. The only date filters available are due date and creation date.