Skip to main content

json_list

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

Overview

Namejson_list
TypeResource
Idcloudflare.browser_rendering.json_list

Fields

The following fields are returned by SELECT queries:

The target with the given ID.

NameDatatypeDescription
idstringTarget ID.
descriptionstringTarget description.
devtoolsFrontendUrlstringDevTools frontend URL.
titlestringTitle of the target.
typestringTarget type (page, background_page, worker, etc.).
urlstringURL of the target.
webSocketDebuggerUrlstringWebSocket URL for debugging this target.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectaccount_id, session_id, target_idReturns the debuggable target with the given ID.

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.
session_idstringThe session ID.
target_idstringTarget ID.

SELECT examples

Returns the debuggable target with the given ID.

SELECT
id,
description,
devtoolsFrontendUrl,
title,
type,
url,
webSocketDebuggerUrl
FROM cloudflare.browser_rendering.json_list
WHERE account_id = '{{ account_id }}' -- required
AND session_id = '{{ session_id }}' -- required
AND target_id = '{{ target_id }}' -- required
;