diff --git a/meet-ce/backend/openapi/components/responses/success-get-room-members.yaml b/meet-ce/backend/openapi/components/responses/success-get-room-members.yaml index 8acf1d22..aee2dbf4 100644 --- a/meet-ce/backend/openapi/components/responses/success-get-room-members.yaml +++ b/meet-ce/backend/openapi/components/responses/success-get-room-members.yaml @@ -61,6 +61,7 @@ content: canReadChat: true canWriteChat: true canChangeVirtualBackground: true + currentParticipantIdentity: 'bob-5678' pagination: isTruncated: false maxItems: 10 diff --git a/meet-ce/backend/openapi/components/schemas/meet-room-member.yaml b/meet-ce/backend/openapi/components/schemas/meet-room-member.yaml index 459ec839..7de1c15b 100644 --- a/meet-ce/backend/openapi/components/schemas/meet-room-member.yaml +++ b/meet-ce/backend/openapi/components/schemas/meet-room-member.yaml @@ -56,3 +56,9 @@ properties: description: > The complete set of effective permissions for this member. This object is calculated by applying the customPermissions overrides to the base role defaults, resulting in the final permissions that will be enforced. + currentParticipantIdentity: + type: string + example: 'alice_smith-1234' + description: | + The identity of the currently connected participant in the meeting associated with this room member. + This value is undefined if the member is not currently connected.