logo_matches
Creates, updates, deletes, gets or lists a logo_matches resource.
Overview
| Name | logo_matches |
| Type | Resource |
| Id | cloudflare.brand_protection.logo_matches |
Fields
The following fields are returned by SELECT queries:
- list
Successfully retrieved logo matches
| Name | Datatype | Description |
|---|---|---|
id | integer | |
query_id | integer | |
url_scan_id | string | |
content_type | string | |
domain | string | |
image_data | string | |
matched_at | string | |
registrar | string | |
similarity_score | number |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | account_id | offset, limit, query_id, download, orderBy, order | Get paginated list of logo matches for a specific brand protection logo query |
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 |
|---|---|---|
account_id | string | The Cloudflare account ID. |
download | string | |
limit | string | |
offset | string | |
order | string | |
orderBy | string | |
query_id | string |
SELECT examples
- list
Get paginated list of logo matches for a specific brand protection logo query
SELECT
id,
query_id,
url_scan_id,
content_type,
domain,
image_data,
matched_at,
registrar,
similarity_score
FROM cloudflare.brand_protection.logo_matches
WHERE account_id = '{{ account_id }}' -- required
AND offset = '{{ offset }}'
AND limit = '{{ limit }}'
AND query_id = '{{ query_id }}'
AND download = '{{ download }}'
AND orderBy = '{{ orderBy }}'
AND order = '{{ order }}'
;