livestreams_active_livestream_session
Creates, updates, deletes, gets or lists a livestreams_active_livestream_session resource.
Overview
| Name | livestreams_active_livestream_session |
| Type | Resource |
| Id | cloudflare.realtime_kit.livestreams_active_livestream_session |
Fields
The following fields are returned by SELECT queries:
- list_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 |
|---|---|---|---|---|
list_by_account | select | account_id, app_id, livestream_id | Returns 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.
| Name | Datatype | Description |
|---|---|---|
account_id | string | The Cloudflare account ID. |
app_id | string | The Access application ID. |
livestream_id | string |
SELECT examples
- list_by_account
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
;