Skip to main content

matches_download

Creates, updates, deletes, gets or lists a matches_download resource.

Overview

Namematches_download
TypeResource
Idcloudflare.brand_protection.matches_download

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
matchesarray
totalinteger

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_idid, offset, limit, include_domain_idReturn matches as CSV for string queries based on ID

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.
idstring
include_domain_idboolean
limitinteger
offsetinteger

SELECT examples

Return matches as CSV for string queries based on ID

SELECT
matches,
total
FROM cloudflare.brand_protection.matches_download
WHERE account_id = '{{ account_id }}' -- required
AND id = '{{ id }}'
AND offset = '{{ offset }}'
AND limit = '{{ limit }}'
AND include_domain_id = '{{ include_domain_id }}'
;