Skip to content

Commit b5842c8

Browse files
authored
Update manage-calls-web.md
1 parent 8a79174 commit b5842c8

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

articles/communication-services/how-tos/calling-sdk/includes/manage-calls/manage-calls-web.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -277,29 +277,22 @@ const state = remoteParticipant.state;
277277
## Check call properties
278278
279279
Get the unique ID (string) for a call:
280-
281280
```js
282281
const callId: string = call.id;
283282
```
284283
285284
Get the local participant Id:
286-
> [!NOTE]
287-
> This API is provided as a preview for developers and may change based on feedback that we receive. To use this api please use 'beta' release of Azure Communication Services Calling Web SDK
288285
```js
289286
const participantId: string = call.info.participantId;
290287
```
291288
*Note: An Azure Communication Services identity can use the web calling sdk in many endpoints, and each endpoint will have its own unique `participantId`. `participantId` is different from the Azure Communication Services identity raw Id.*
292289
293290
Retrieve the thread ID if joining a Teams meeting:
294-
> [!NOTE]
295-
> This API is provided as a preview for developers and may change based on feedback that we receive. To use this api please use 'beta' release of Azure Communication Services Calling Web SDK
296291
```js
297292
const threadId: string | undefined = call.info.threadId;
298293
```
299294
300295
Get information about the call:
301-
> [!NOTE]
302-
> This API is provided as a preview for developers and may change based on feedback that we receive. To use this api please use 'beta' release of Azure Communication Services Calling Web SDK
303296
```js
304297
const callInfo = call.info;
305298
```

0 commit comments

Comments
 (0)