Skip to main content

items

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

Overview

Nameitems
TypeResource
Idcloudflare.zero_trust.items

Fields

The following fields are returned by SELECT queries:

Get Zero Trust list items response.

NameDatatypeDescription

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectlist_id, account_idFetch all items in a single Zero Trust list.

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
account_idstringThe Cloudflare account ID.
list_idstring

SELECT examples

Fetch all items in a single Zero Trust list.

SELECT
*
FROM cloudflare.zero_trust.items
WHERE list_id = '{{ list_id }}' -- required
AND account_id = '{{ account_id }}' -- required
;