Hello,
I am using this endpoint to create an online meeting.
"[POST] https://graph.microsoft.com/v1.0/users/{userID}/events". I am using the following as my body
{
"subject": "Let's go for lunch",
"body": {
"contentType": "HTML",
"content": "Does noon work for you?"
},
"start": {
"dateTime": "2017-04-15T12:00:00",
"timeZone": "Pacific Standard Time"
},
"end": {
"dateTime": "2017-04-15T14:00:00",
"timeZone": "Pacific Standard Time"
},
"isOnlineMeeting": true,
"onlineMeetingProvider": "teamsForBusiness"
}
I return a 200 OK, so far so good. However what I am noticing is that the url is "incorrect", so I can't actually access the meeting.
What I think is happening, is that the url that is generated is redacting the Client App ID from Azure in the URL.. See below.
https://teams.microsoft.com/l/meetup-join/19%3ameeting_NzQzNGI1OTE---ViLTliNjktMWNiMjZjYjUyY2U1%40thread.v2/0?context=%7b%22Tid%22%3a%22\<REDACTED>%22%2c%22Oid%22%3a%22f676eb1c-4c21---89b-10617e392dc1%22%7d

I think that's the case because when I manually create an online teams meeting I get this result. Any thoughts?
https://teams.microsoft.com/l/meetup-join/19%3ameeting_YTY0OTliYjQtYThjMS00NDI3LTljMmQtM2UzYTQ0ZGE5YWYx%40thread.v2/0?context=%7b%22Tid%22%3a%22ca75d510-bbfc-\*\*\*-\*\*\*\*-\*\*\*\*\*\*\*\*%22%2c%22Oid%22%3a%22f676eb1c-4c21-458e-989b-10617e392dc1%22%7d
Anyone have anythoughts as why my url is redacted?