Skip to main content

kit_meetings

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

Overview

Namekit_meetings
TypeResource
Idcloudflare.realtime_kit.kit_meetings

Fields

The following fields are returned by SELECT queries:

Success Response

NameDatatypeDescription
dataobjectData returned by the operation
successbooleanSuccess status of the operation

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_by_accountselectmeeting_id, account_id, app_idnameReturns a meeting details in an App for the given meeting ID.
list_by_accountselectaccount_id, app_idpage_no, per_page, start_time, end_time, searchReturns all meetings for the given App 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.
end_timestring (date-time)The end time range for which you want to retrieve the meetings. The time must be specified in ISO format.
namestring
page_nonumberThe page number from which you want your page search results to be displayed.
per_pagenumberNumber of results per page
start_timestring (date-time)The start time range for which you want to retrieve the meetings. The time must be specified in ISO format.

SELECT examples

Returns a meeting details in an App for the given meeting ID.

SELECT
data,
success
FROM cloudflare.realtime_kit.kit_meetings
WHERE meeting_id = '{{ meeting_id }}' -- required
AND account_id = '{{ account_id }}' -- required
AND app_id = '{{ app_id }}' -- required
AND name = '{{ name }}'
;