#Qualle
1 messages · Page 1 of 1 (latest)
Hi there! Invoices should be automatically created at the end of a billing cycle
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?
Sorry for the delay! You'd pass along their customer ID in the same call
something like:
limit: 3,
customer: 'cus_123abc'
});```
@hazy pulsar did that work?