matches_download
Creates, updates, deletes, gets or lists a matches_download resource.
Overview
| Name | matches_download |
| Type | Resource |
| Id | cloudflare.brand_protection.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 | id, offset, limit, include_domain_id | Return 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.
| Name | Datatype | Description |
|---|---|---|
account_id | string | The Cloudflare account ID. |
id | string | |
include_domain_id | boolean | |
limit | integer | |
offset | integer |
SELECT examples
- list
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 }}'
;