Skip to main content

brand_protection_logo_matches

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

Overview

Namebrand_protection_logo_matches
TypeResource
Idcloudflare.brand_protection.brand_protection_logo_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_idlogo_id, offset, limitReturn matches for logo 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.
limitstring
logo_idarray
offsetstring

SELECT examples

Return matches for logo queries based on ID

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