sessions_transcript
Creates, updates, deletes, gets or lists a sessions_transcript resource.
Overview
| Name | sessions_transcript |
| Type | Resource |
| Id | cloudflare.realtime_kit.sessions_transcript |
Fields
The following fields are returned by SELECT queries:
- list
Returns the complete transcript of a 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 |
|---|---|---|---|---|
list | select | account_id, app_id, session_id | Returns a URL to download the transcript for the session ID in CSV format. |
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. |
SELECT examples
- list
Returns a URL to download the transcript for the session ID in CSV format.
SELECT
data,
success
FROM cloudflare.realtime_kit.sessions_transcript
WHERE account_id = '{{ account_id }}' -- required
AND app_id = '{{ app_id }}' -- required
AND session_id = '{{ session_id }}' -- required
;