Skip to main content

recordings_active_recording

Creates, updates, deletes, gets or lists a recordings_active_recording resource.

Overview

Namerecordings_active_recording
TypeResource
Idcloudflare.realtime_kit.recordings_active_recording

Fields

The following fields are returned by SELECT queries:

Success response

NameDatatypeDescription
dataobjectData returned by the operation (title: Recording)
successbooleanSuccess status of the operation

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_by_accountselectaccount_id, app_id, meeting_idReturns 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.

NameDatatypeDescription
account_idstringThe Cloudflare account ID.
app_idstringThe Access application ID.
meeting_idstringThe Realtime Kit meeting ID.

SELECT examples

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
;