#KRS - invoice items
1 messages · Page 1 of 1 (latest)
You can retrieve them all but the items may be divided in to pages depending how you retrieve them and how many there are.
The API call that retrieves them directly has a limit parameter that lets you specify page size, you can return up to 100 per call https://stripe.com/docs/api/invoiceitems/list#list_invoiceitems-limit
If you are retrieving the invoice rather than the items, that list will be limited to 10 items, but you can check the list's has_more property to see if you need to retrieve any after the ones that you can see https://stripe.com/docs/api/invoices/object#invoice_object-lines-has_more
Is that helpful?
thanks.