how to update microsoft graph api calendar with meeting blob? (may i know what are all the meeting blob details available in request)

poovarasan d 60 Reputation points
2025-01-27T12:14:48.4+00:00

how to update microsoft graph api calendar with meeting blob? (may i know what are all the meeting blob details available in request)

Microsoft Security | Microsoft Graph
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Saranya Madhu-MSFT 2,375 Reputation points Microsoft External Staff
    2025-01-28T08:53:33.0333333+00:00

    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
    }
    

    User's imageHope 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.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.