action linode_get_invoice_items { label: "Invoice Items List" description: "Returns a paginated list of Invoice items." provider: linode method: GET path: "/account/invoices/{invoiceId}/items" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" description: "An InvoiceItem object." properties: { amount: { type: "number" description: "The price, in US dollars, of the Invoice Item. Equal to the unit price multiplied by quantity." } from: { type: "string" format: "date-time" description: "The date the Invoice Item started, based on month." } label: { type: "string" description: "The Invoice Item's display label." } quantity: { type: "integer" description: "The quantity of this Item for the specified Invoice." } tax: { type: "number" description: "The amount of tax levied on this Item in US Dollars." } to: { type: "string" format: "date-time" description: "The date the Invoice Item ended, based on month." } total: { type: "number" description: "The price of this Item after taxes in US Dollars." } type: { type: "string" description: "The type of service, ether `hourly` or `misc`." enum: ["hourly", "misc"] } unit_price: { type: "string" description: "The monthly service fee in US Dollars for this Item." } } } } page: { type: "integer" description: "The current [page](/docs/api/#pagination)." } pages: { type: "integer" description: "The total number of [pages](/docs/api/#pagination)." } results: { type: "integer" description: "The total number of results." } } } }