action linode_get_invoices { label: "Invoices List" description: "Returns a paginated list of Invoices against your Account.\n" provider: linode method: GET path: "/account/invoices" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" description: "Account Invoice object" properties: { date: { type: "string" format: "date-time" description: "When this Invoice was generated." } id: { type: "integer" description: "The Invoice's unique ID." } label: { type: "string" description: "The Invoice's display label." } subtotal: { type: "number" description: "The amount of the Invoice before taxes in US Dollars." } tax: { type: "number" description: "The amount of tax levied on the Invoice in US Dollars." } tax_summary: { type: "array" description: "The amount of tax broken down into subtotals by source." items: { type: "object" properties: { name: { type: "string" description: "The source of this tax subtotal." } tax: { type: "number" description: "The amount of tax subtotal attributable to this source." } } } } total: { type: "number" description: "The amount of the Invoice after taxes in US Dollars." } } } } 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." } } } }