Account

Invoice Items List

get
https://api.linode.com/v4/account/invoices/{invoiceId}/items

Returns a paginated list of Invoice items.

Path Parameters

invoiceId
Required
integer

The ID of the Invoice.

Query Parameters

page
integer > = 1
Default: 1

The page of a collection to return.

page_size
integer [25 .. 500]
Default: 100

The number of items to return per page.

Request Samples

curl -H "Authorization: Bearer $TOKEN" \
    https://api.linode.com/v4/account/invoices/123/items

Response Samples

{
  "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

data
array of objects
label
string

The Invoice Item's display label.

tax
number

The amount of tax levied on this Item in US Dollars.

total
number

The price of this Item after taxes in US Dollars.

amount
number

The price, in US dollars, of the Invoice Item. Equal to the unit price multiplied by quantity.

from
string

The date the Invoice Item started, based on month.

quantity
integer

The quantity of this Item for the specified Invoice.

to
string

The date the Invoice Item ended, based on month.

type
string
Enum: "hourly""misc"

The type of service, ether hourly or misc.

unit_price
string

The monthly service fee in US Dollars for this Item.

page
integer

The current page.

pages
integer

The total number of pages.

results
integer

The total number of results.

default: Error

errors
array of objects
reason
string

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.

field
string

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.