livestreams_active_livestream
Creates, updates, deletes, gets or lists a livestreams_active_livestream resource.
Overview
| Name | livestreams_active_livestream |
| Type | Resource |
| Id | cloudflare.realtime_kit.livestreams_active_livestream |
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 | meeting_id, account_id, app_id | Returns 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.
| Name | Datatype | Description |
|---|---|---|
account_id | string | The Cloudflare account ID. |
app_id | string | The Access application ID. |
meeting_id | string | The Realtime Kit meeting ID. |
SELECT examples
- list_by_account
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
;