action linode_get_invoice { label: "Invoice View" description: "Returns a single Invoice object." provider: linode method: GET path: "/account/invoices/{invoiceId}" encoding: json output: { 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." } } } }