We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e288797 + 845bea8 commit cbb13b6Copy full SHA for cbb13b6
articles/communication-services/how-tos/calling-sdk/teams-interoperability.md
@@ -49,7 +49,15 @@ const locator = {
49
}
50
const call = callAgent.join(locator);
51
```
52
+
53
+Join by using meeting id (this is currently in limited preview):
54
55
+```js
56
+const locator = { meetingId: '<MEETING_ID>'}
57
+const call = callAgent.join(locator);
58
+```
59
60
## Next steps
61
- [Learn how to manage calls](./manage-calls.md)
62
- [Learn how to manage video](./manage-video.md)
-- [Learn how to transfer calls](./transfer-calls.md)
63
+- [Learn how to transfer calls](./transfer-calls.md)
0 commit comments