v2_result
Creates, updates, deletes, gets or lists a v2_result resource.
Overview
| Name | v2_result |
| Type | Resource |
| Id | cloudflare.url_scanner.v2_result |
Fields
The following fields are returned by SELECT queries:
- get
Scan has finished. It may or may not have been successful.
| Name | Datatype | Description |
|---|---|---|
data | object | |
lists | object | |
meta | object | |
page | object | |
scanner | object | |
stats | object | |
task | object | |
verdicts | object |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | scan_id, account_id | Get URL scan by uuid |
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. |
scan_id | string (uuid) | Scan UUID. |
SELECT examples
- get
Get URL scan by uuid
SELECT
data,
lists,
meta,
page,
scanner,
stats,
task,
verdicts
FROM cloudflare.url_scanner.v2_result
WHERE scan_id = '{{ scan_id }}' -- required
AND account_id = '{{ account_id }}' -- required
;