Skip to main content

meetings_participants

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

Overview

Namemeetings_participants
TypeResource
Idcloudflare.realtime_kit.meetings_participants

Fields

The following fields are returned by SELECT queries:

Success response

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_by_accountselectmeeting_id, participant_id, account_id, app_idReturns a participant details for the given meeting and participant ID.
list_by_accountselectaccount_id, app_id, meeting_idpage_no, per_pageReturns all participants detail 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.
participant_idstringID of the participant. You can fetch the participant ID using the add a participant API.
page_nonumberThe page number from which you want your page search results to be displayed.
per_pagenumberNumber of results per page

SELECT examples

Returns a participant details for the given meeting and participant ID.

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