Skip to main content

v2_har

Creates, updates, deletes, gets or lists a v2_har resource.

Overview

Namev2_har
TypeResource
Idcloudflare.url_scanner.v2_har

Fields

The following fields are returned by SELECT queries:

Returns the scan's har.

NameDatatypeDescription
logobject

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectscan_id, account_idGet 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.

NameDatatypeDescription
account_idstringThe Cloudflare account ID.
scan_idstring (uuid)Scan UUID.

SELECT examples

Get a URL scan's HAR file. See HAR spec at http://www.softwareishard.com/blog/har-12-spec/.

SELECT
log
FROM cloudflare.url_scanner.v2_har
WHERE scan_id = '{{ scan_id }}' -- required
AND account_id = '{{ account_id }}' -- required
;