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.
Version Base URL Non-null Parameters Teams for Business teams.microsoft.com
organizer_id
tenant_id
message_id
thread_id
Teams for Personal use teams.live.com
meeting_id
meeting_password
Webex
"meeting_url": {
"meeting_subdomain": string,
"meeting_mtid": string,
"meeting_path": string,
"platform": "webex"
}
Updated 7 months ago