organizer of online meeting using graph api

PraveenKumar34 131 Reputation points
2021-05-21T11:47:19.973+00:00

i am using an admin account so while i am creating online meeting using graph api how to add another person as organizer through rest api call and how to add person as participants who does have microsoft account.

Microsoft Graph
Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
11,248 questions
Microsoft Teams Development
Microsoft Teams Development
Microsoft Teams: A Microsoft customizable chat-based workspace.Development: The process of researching, productizing, and refining new or existing technologies.
3,007 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Chetana-MSFT 81 Reputation points
    2021-06-02T06:34:30.12+00:00

    Hi @PraveenKumar34 please go through the below sample to add person as organizer through graph api and to add person as participants.

    Request URL:

    POST https://graph.microsoft.com/v1.0/me/onlineMeetings

    Request Body:

    {  
    "startDateTime" = "2021-05-06T01:49:21.3524945+00:00",  
    "endDateTime": "2021-05-06T01:49:21.3524945+00:000",  
    "subject": "User Token Meeting",  
    "participants": {  
    "attendees": [  
    {  
    "identity": {  
    "user": {  
    "id": "User.Id",  
    "displayName": "null"  
    }  
    },  
    "upn": "User.UserPrincipalName"  
    }  
    ],  
    "organizer": {  
    "identity": {  
    "user": {  
    "id": "User.Id",  
    "displayName": "null"  
    }  
    },  
    "upn": "User.UserPrincipalName"  
    }  
    }  
    }  
    
    0 comments No comments