#Qualle

1 messages · Page 1 of 1 (latest)

simple oracleBOT
dusty ridge
#

Hi there! Invoices should be automatically created at the end of a billing cycle

hazy pulsar
#

one more question while I got ya

#

I see

const invoices = await stripe.invoices.list({
  limit: 3,
});
#

to list all invoices, but how do I get all invoices for a particular customer?

dusty ridge
#

Sorry for the delay! You'd pass along their customer ID in the same call

#

something like:

  limit: 3,
  customer: 'cus_123abc'
});```
dusty ridge
#

@hazy pulsar did that work?