logo_matches_download
Creates, updates, deletes, gets or lists a logo_matches_download resource.
Overview
| Name | logo_matches_download |
| Type | Resource |
| Id | cloudflare.brand_protection.logo_matches_download |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
matches | array | |
total | integer |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | account_id | logo_id, offset, limit | Return matches as CSV 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.
| Name | Datatype | Description |
|---|---|---|
account_id | string | The Cloudflare account ID. |
limit | string | |
logo_id | array | |
offset | string |
SELECT examples
- list
Return matches as CSV for logo queries based on ID
SELECT
matches,
total
FROM cloudflare.brand_protection.logo_matches_download
WHERE account_id = '{{ account_id }}' -- required
AND logo_id = '{{ logo_id }}'
AND offset = '{{ offset }}'
AND limit = '{{ limit }}'
;