Skip to main content

invoice_items

Creates, updates, deletes, gets or lists an invoice_items resource.

Overview

Nameinvoice_items
TypeResource
Idlinode.account.invoice_items

Fields

The following fields are returned by SELECT queries:

A paginated list of InvoiceItem objects.

NameDatatypeDescription
dataarray
pageintegerRead-only The current page.
pagesintegerRead-only The total number of pages.
resultsintegerRead-only The total number of results.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_invoice_itemsselectpage, page_sizeReturns a paginated list of Invoice items.

Learn more...

Learn more...

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
pageintegerThe page of a collection to return.
page_sizeintegerThe number of items to return per page.

SELECT examples

Returns a paginated list of Invoice items.

Learn more...

Learn more...

SELECT
data,
page,
pages,
results
FROM linode.account.invoice_items
WHERE page = '{{ page }}'
AND page_size = '{{ page_size }}';