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.
1 parent c928843 commit 845bea8Copy full SHA for 845bea8
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