har
Creates, updates, deletes, gets or lists a har resource.
Overview
| Name | har |
| Type | Resource |
| Id | cloudflare.url_scanner.har |
Fields
The following fields are returned by SELECT queries:
- list
Returns the scan's har.
| Name | Datatype | Description |
|---|---|---|
har | object |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | scan_id, account_id | Get a URL scan's HAR file. See HAR spec at http://www.softwareishard.com/blog/har-12-spec/. |
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
- list
Get a URL scan's HAR file. See HAR spec at http://www.softwareishard.com/blog/har-12-spec/.
SELECT
har
FROM cloudflare.url_scanner.har
WHERE scan_id = '{{ scan_id }}' -- required
AND account_id = '{{ account_id }}' -- required
;