Skip to content

Commit 66d4667

Browse files
Update articles/communication-services/how-tos/calling-sdk/lobby-admit-and-reject.md
Co-authored-by: tomaschladek <[email protected]>
1 parent f27fb11 commit 66d4667

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/communication-services/how-tos/calling-sdk/lobby-admit-and-reject.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ To admit, reject or admit all users from the lobby, you can use the `admit`, `re
3333
You can admit specific user to the Teams meeting from lobby by calling the method `admit` on the object `TeamsCall` or `Call`. The method accepts identifiers `MicrosoftTeamsUserIdentifier`, `CommunicationUserIdentifier`, `PhoneNumberIdentifier` or `UnknownIdentifier` as input.
3434
```js
3535
const teamsUserIdentifier = { microsoftTeamsUserId: '<MICROSOFT_TEAMS_USER_ID>' };
36-
const userIdentifier = { communicationUserId: '<ACS_USER_ID>' };
36+
const userIdentifier = { communicationUserId: '<COMMUNICATION_SERVICES_USER_ID>' };
3737
const phoneUserIdentifier = { phoneNumber: '<PHONE_NUMBER>' }
3838
await call.admit(teamsUserIdentifier);
3939
await call.admit(userIdentifier);

0 commit comments

Comments
 (0)