Skip to main content

participants

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

Overview

Nameparticipants
TypeResource
Idazure.communication_rooms.participants

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
updateupdateroom_id, endpointUpdate participants in a room. Update participants in a room.
list_rawexecroom_id, endpointGet participants in a room. Get participants in a room.

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
endpointstringThe service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client endpoint parameter. (default: )
room_idstringThe id of the room to get participants from. Required.

UPDATE examples

Update participants in a room. Update participants in a room.

UPDATE azure.communication_rooms.participants
SET
-- No updatable properties
WHERE
room_id = '{{ room_id }}' --required
AND endpoint = '{{ endpoint }}' --required;

Lifecycle Methods

Get participants in a room. Get participants in a room.

EXEC azure.communication_rooms.participants.list_raw 
@room_id='{{ room_id }}' --required,
@endpoint='{{ endpoint }}' --required
;