Skip to main content

brand_protection_matches

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

Overview

Namebrand_protection_matches
TypeResource
Idcloudflare.brand_protection.brand_protection_matches

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 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 for string queries based on ID

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