kit_sessions
Creates, updates, deletes, gets or lists a kit_sessions resource.
Overview
| Name | kit_sessions |
| Type | Resource |
| Id | cloudflare.realtime_kit.kit_sessions |
Fields
The following fields are returned by SELECT queries:
- get_by_account
Get details about a particular session
| Name | Datatype | Description |
|---|---|---|
data | object | |
success | boolean |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_by_account | select | account_id, app_id, session_id | include_breakout_rooms | Returns data of the given session ID including recording details. |
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. |
app_id | string | The Access application ID. |
session_id | string | The session ID. |
include_breakout_rooms | boolean | List all breakout rooms |
SELECT examples
- get_by_account
Returns data of the given session ID including recording details.
SELECT
data,
success
FROM cloudflare.realtime_kit.kit_sessions
WHERE account_id = '{{ account_id }}' -- required
AND app_id = '{{ app_id }}' -- required
AND session_id = '{{ session_id }}' -- required
AND include_breakout_rooms = '{{ include_breakout_rooms }}'
;