Account
Invoice Items List
https://api.linode.com/v4/account/invoices/{invoiceId}/items
Returns a paginated list of Invoice items.
Path Parameters
The ID of the Invoice.
Query Parameters
The page of a collection to return.
The number of items to return per page.
Request Samples
- Shell
- CLI
curl -H "Authorization: Bearer $TOKEN" \
https://api.linode.com/v4/account/invoices/123/items
Response Samples
- 200
- default
{
"data": [
{
"label": "Linode 123",
"tax": 1.25,
"total": 21.45,
"amount": 20.2,
"from": "2018-01-01T00:01:01",
"quantity": 4,
"to": "2018-01-31T11:59:59",
"type": "hourly",
"unit_price": 5.05
}
],
"page": 1,
"pages": 1,
"results": 1
}
Responses
200: A paginated list of InvoiceItem objects
The Invoice Item's display label.
The amount of tax levied on this Item in US Dollars.
The price of this Item after taxes in US Dollars.
The price, in US dollars, of the Invoice Item. Equal to the unit price multiplied by quantity.
The date the Invoice Item started, based on month.
The quantity of this Item for the specified Invoice.
The date the Invoice Item ended, based on month.
The type of service, ether hourly
or misc
.
The monthly service fee in US Dollars for this Item.
The current page.
The total number of pages.
The total number of results.
default: Error
What happened to cause this error. In most cases, this can be fixed immediately by changing the data you sent in the request, but in some cases you will be instructed to open a Support Ticket or perform some other action before you can complete the request successfully.
The field in the request that caused this error. This may be a path, separated by periods in the case of nested fields. In some cases this may come back as "null" if the error is not specific to any single element of the request.