recordings_active_recording
Creates, updates, deletes, gets or lists a recordings_active_recording resource.
Overview
| Name | recordings_active_recording |
| Type | Resource |
| Id | cloudflare.realtime_kit.recordings_active_recording |
Fields
The following fields are returned by SELECT queries:
- get_by_account
Success response
| Name | Datatype | Description |
|---|---|---|
data | object | Data returned by the operation (title: Recording) |
success | boolean | Success status of the operation |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_by_account | select | account_id, app_id, meeting_id | Returns the active recording details 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
- get_by_account
Returns the active recording details for the given meeting ID.
SELECT
data,
success
FROM cloudflare.realtime_kit.recordings_active_recording
WHERE account_id = '{{ account_id }}' -- required
AND app_id = '{{ app_id }}' -- required
AND meeting_id = '{{ meeting_id }}' -- required
;