Meeting URL's

🚧

API Reference under construction

We're working on fixing how meeting_url is documented in our API reference. In the meantime, here is a reference for the shapes of various platform meeting URL's.

Zoom

"meeting_url": {
  "meeting_id": string,
  "meeting_password": string | null,
  "platform": "zoom"
}

Google Meet

"meeting_url": {
  "meeting_id": string,
  "platform": "google_meet"
}

Microsoft Teams

"meeting_url": {
  "meeting_id": string| null,
  "meeting_password": string | null,
  "organizer_id": string | null,
  "tenant_id": string | null,
  "message_id": string | null,
  "thread_id": string | null,
  "platform": "microsoft_teams"
}

πŸ“˜

Microsoft Teams URL differences

Microsoft Teams meeting URL use different parameters depending on the Teams version being used.

The table below shows what you can expect for each Teams version meeting URL.

VersionBase URLNon-null Parameters
Teams for Businessteams.microsoft.comorganizer_id
tenant_id
message_id
thread_id
Teams for Personal useteams.live.commeeting_id
meeting_password

Webex

"meeting_url": {
  "meeting_subdomain": string,
  "meeting_mtid": string,
  "meeting_path": string,
  "platform": "webex"
}