Skip to main content

sessions_summary

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

Overview

Namesessions_summary
TypeResource
Idcloudflare.realtime_kit.sessions_summary

Fields

The following fields are returned by SELECT queries:

Returns a complete summary of transcripts of a session.

NameDatatypeDescription
dataobject (title: TranscriptSummary)
successboolean

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_id, app_id, session_idReturns a Summary URL to download the Summary of Transcripts for the session ID as plain text.

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.
app_idstringThe Access application ID.
session_idstringThe session ID.

SELECT examples

Returns a Summary URL to download the Summary of Transcripts for the session ID as plain text.

SELECT
data,
success
FROM cloudflare.realtime_kit.sessions_summary
WHERE account_id = '{{ account_id }}' -- required
AND app_id = '{{ app_id }}' -- required
AND session_id = '{{ session_id }}' -- required
;