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".