Hi Team,
My requirement is that when I create a zoom meeting it should send some sort of join notification to the participants as toast message(notification popup).
I tried with zoom meeting rest api where user X creates a scheduled meeting where user Y is meeting invitee.
My observation:
- For meeting type “2”(scheduled meeting) host user(X) receives meeting start notification popup, but other partcipant(invitee Y) does not receive any such notification popup.
- For meeting type “1” (instant meeting) host user does not receive any sort of notification either.
Sample Request 1.
POST /v2/users/X@domain.com/meetings HTTP/1.1
Host: api.zoom.us
Authorization: Bearer XXXX
Content-Type: application/json
{
“topic”: “test meeting”,
“type”: 2,
“agenda”: “test meeting”,
“settings”: {
"meeting_authentication":true,c
"join_before_host": true,
"meeting_invitees":[{"email":"Y@domain.com"}]
}
}
Any help on this highly appreciated.