urlscanner
Creates, updates, deletes, gets or lists a urlscanner resource.
Overview
| Name | urlscanner |
| Type | Resource |
| Id | cloudflare.url_scanner.urlscanner |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
bulk_v2 | exec | account_id | Submit URLs to scan. Check limits at https://developers.cloudflare.com/security-center/investigate/scan-limits/ and take into account scans submitted in bulk have lower priority and may take longer to finish. | |
scan_v2 | exec | account_id, url | Submit a URL to scan. Check limits at https://developers.cloudflare.com/security-center/investigate/scan-limits/. |
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. |
Lifecycle Methods
- bulk_v2
- scan_v2
Submit URLs to scan. Check limits at https://developers.cloudflare.com/security-center/investigate/scan-limits/ and take into account scans submitted in bulk have lower priority and may take longer to finish.
EXEC cloudflare.url_scanner.urlscanner.bulk_v2
@account_id='{{ account_id }}' --required
;
Submit a URL to scan. Check limits at https://developers.cloudflare.com/security-center/investigate/scan-limits/.
EXEC cloudflare.url_scanner.urlscanner.scan_v2
@account_id='{{ account_id }}' --required
@@json=
'{
"agentReadiness": {{ agentReadiness }},
"country": "{{ country }}",
"customHeaders": "{{ customHeaders }}",
"customagent": "{{ customagent }}",
"referer": "{{ referer }}",
"screenshotsResolutions": "{{ screenshotsResolutions }}",
"url": "{{ url }}",
"visibility": "{{ visibility }}"
}'
;