Need to create calendar event for multiple users for msteam online meeting

Parth Kumar 66 Reputation points
2022-09-08T13:27:27.103+00:00

I have created the meeting event in calendar and it is working for the user, but I want to put up the same event for other user for specific email ids, how to achieve it by using graph APIs?

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

Accepted answer
  1. Srinivasa Rao Darna 6,761 Reputation points Microsoft External Staff
    2022-09-08T15:05:15.36+00:00

    Hi @Parth Kumar ,

    You can use event-forward Graph API to forward calendar events to additional participants. Here is an example Graph API.

    POST https://graph.microsoft.com/v1.0/me/events/{id}/forward  
    Content-type: application/json  
      
    {  
      "ToRecipients":[  
          {  
            "emailAddress": {  
              "address":"******@contoso.com"  
            }  
          },  
          {  
            "emailAddress": {  
              "address":"******@contoso.com"  
            }  
          }  
         ],  
      "Comment": "hope you can make this meeting."   
    }  
    

    Hope this helps.
    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".


0 additional answers

Sort by: Most helpful

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.