/billing/v1/invoice-itemsThis endpoint retrieves a list of invoice items
limitstringThe maximum number of invoice items to return (default 20, maximum 100)
startingAfterstringThe ID of the last invoice item in the previous page of results. Results will start after this invoice item
A list of invoice item
{
"data": {
"hasMore": true,
"items": [
{
"id": "string",
"session": "string",
"paymentProfile": "string",
"network": "string",
"total": 123.0,
"currency": "string",
"remarks": "string",
"creditInvoiceReference": "string"
}
]
}
}Was this page helpful?