Skip to main content

livestreams_active_livestream_session

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

Overview

Namelivestreams_active_livestream_session
TypeResource
Idcloudflare.realtime_kit.livestreams_active_livestream_session

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
dataobject
successboolean

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_accountselectaccount_id, app_id, livestream_idReturns details of all active livestreams for the given livestream ID. Retreive the livestream ID using the Start livestreaming a meeting 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.

NameDatatypeDescription
account_idstringThe Cloudflare account ID.
app_idstringThe Access application ID.
livestream_idstring

SELECT examples

Returns details of all active livestreams for the given livestream ID. Retreive the livestream ID using the Start livestreaming a meeting API.

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