I am trying to create Teams Meeting invite via graph API but unable to figure out how to send meeting participants via the body as their documentation is not clear. I was using the graph API /me/onlineMeetings
as mentioned here with the following body. I am not sure if this is the correct way, All I know is meeting timings, participant email ids. Can someone help me here?
Post request body:
{
"startDateTime":"2021-05-13T10:30:34.2444915-07:00",
"endDateTime":"2021-05-13T10:35:34.2464912-07:00",
"subject":"Testing Invite",
"meetingParticipants": {
"attendees": [{
"mail": "test@outlook.com"
}]
}
}