livestreams_overall
Creates, updates, deletes, gets or lists a livestreams_overall resource.
Overview
| Name | livestreams_overall |
| Type | Resource |
| Id | cloudflare.realtime_kit.livestreams_overall |
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 | account_id, app_id | start_time, end_time | Returns livestream analytics for the specified time range. |
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. |
end_time | string (date-time) | Specify the end time range in ISO format to access the livestream analytics. |
start_time | string (date-time) | Specify the start time range in ISO format to access the livestream analytics. |
SELECT examples
- list
Returns livestream analytics for the specified time range.
SELECT
data,
success
FROM cloudflare.realtime_kit.livestreams_overall
WHERE account_id = '{{ account_id }}' -- required
AND app_id = '{{ app_id }}' -- required
AND start_time = '{{ start_time }}'
AND end_time = '{{ end_time }}'
;