invoice_items
Creates, updates, deletes, gets or lists an invoice_items resource.
Overview
| Name | invoice_items |
| Type | Resource |
| Id | linode.account.invoice_items |
Fields
The following fields are returned by SELECT queries:
- get_invoice_items
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_invoice_items | select | page, page_size | Returns 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.
| Name | Datatype | Description |
|---|---|---|
page | integer | The page of a collection to return. |
page_size | integer | The number of items to return per page. |
SELECT examples
- get_invoice_items
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 }}'
;