livestreams_sessions
Creates, updates, deletes, gets or lists a livestreams_sessions resource.
Overview
| Name | livestreams_sessions |
| Type | Resource |
| Id | cloudflare.realtime_kit.livestreams_sessions |
Fields
The following fields are returned by SELECT queries:
- get_by_account
| 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, livestream_session_id | Returns livestream session details for the given livestream session ID. Retrieve the livestream_session_idusing the Fetch livestream session details using a session ID API. |
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. |
livestream_session_id | string |
SELECT examples
- get_by_account
Returns livestream session details for the given livestream session ID. Retrieve the livestream_session_idusing the Fetch livestream session details using a session ID API.
SELECT
data,
success
FROM cloudflare.realtime_kit.livestreams_sessions
WHERE account_id = '{{ account_id }}' -- required
AND app_id = '{{ app_id }}' -- required
AND livestream_session_id = '{{ livestream_session_id }}' -- required
;