Hi poovarasan d,
Thanks for reaching out to Microsoft!
As per my testing, the property isOnlineMeeting
set to true the event has the online meeting information.
To update the onlineMeeting, add these properties in the request body - attendees property, body property, end and start properties and their time zones, isOnlineMeeting set to true.
I have updated the meeting as follow:
PATCH
{
"subject": "Updated Meeting",
"body": {
"contentType": "HTML",
"content": "Updated meeting details "
},
"start": {
"dateTime": "2025-01-28T14:00:00",
"timeZone": "Pacific Standard Time"
},
"end": {
"dateTime": "2025-01-28T15:00:00",
"timeZone": "Pacific Standard Time"
},
"location": {
"displayName": "Conference Room"
},
"attendees": [
{
"emailAddress": {
"address": ******@name.onmicrosoft.com,
"name": "Attendee Name"
},
"type": "required"
}
],
"isOnlineMeeting": true
}
Hope this helps.
If the answer is helpful, please click Accept Answer and kindly upvote. If you have any further questions about this answer, please click Comment.