Skip to main content

livestreams_active_livestream

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

Overview

Namelivestreams_active_livestream
TypeResource
Idcloudflare.realtime_kit.livestreams_active_livestream

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_accountselectmeeting_id, account_id, app_idReturns details of all active livestreams for the given meeting ID.

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.
meeting_idstringThe Realtime Kit meeting ID.

SELECT examples

Returns details of all active livestreams for the given meeting ID.

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