Join a teams meeting

Azure Communication Services SDKs can allow your users to join regular Microsoft Teams meetings. Here's how!

Prerequisites

To join a Teams meeting, use the join method and pass a meeting link or a meeting's coordinates.

Join by using a meeting link:

const locator = { meetingLink: '<MEETING_LINK>'}
const call = callAgent.join(locator);

Join by using meeting coordinates (this is currently in limited preview):

const locator = {
    threadId: <thread id>,
    organizerId: <organizer id>,
    tenantId: <tenant id>,
    messageId: <message id>
}
const call = callAgent.join(locator);

Next steps