Skip to main content

v2_responses

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

Overview

Namev2_responses
TypeResource
Idcloudflare.url_scanner.v2_responses

Fields

The following fields are returned by SELECT queries:

Get the raw response by its hash.

NameDatatypeDescription
contentsstring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_responses_v2selectresponse_id, account_idReturns the raw response of the network request. Find the response_id in the data.requests.response.hash.

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.
response_idstringResponse hash.

SELECT examples

Returns the raw response of the network request. Find the response_id in the data.requests.response.hash.

SELECT
contents
FROM cloudflare.url_scanner.v2_responses
WHERE response_id = '{{ response_id }}' -- required
AND account_id = '{{ account_id }}' -- required
;