livestream
Creates, updates, deletes, gets or lists a livestream resource.
Overview
| Name | livestream |
| Type | Resource |
| Id | cloudflare.realtime_kit.livestream |
Fields
The following fields are returned by SELECT queries:
- list
| 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 | select | meeting_id, account_id, app_id | page_no, per_page | Returns livestream session details for the given meeting ID. Retreive the meeting ID using the Create 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. |
meeting_id | string | The Realtime Kit meeting ID. |
page_no | integer | The page number from which you want your page search results to be displayed. |
per_page | integer | Number of results per page. |
SELECT examples
- list
Returns livestream session details for the given meeting ID. Retreive the meeting ID using the Create a meeting API.
SELECT
data,
success
FROM cloudflare.realtime_kit.livestream
WHERE meeting_id = '{{ meeting_id }}' -- required
AND account_id = '{{ account_id }}' -- required
AND app_id = '{{ app_id }}' -- required
AND page_no = '{{ page_no }}'
AND per_page = '{{ per_page }}'
;