Hi Team,
Is it possible to forward an invite to new recipients using Update event - https://docs.microsoft.com/en-us/graph/api/event-update?view=graph-rest-
1.0&tabs=http#http-request
I test the update event api with the below scenario.
https://graph.microsoft.com/v1.0/users/malikonda@paypal.com/calendar/events/id
Scenario:
1. Sent invite to me only first.
2. Called the Update api with below request(Trying to add you in the invite)
It basically updates mine with XXX name. I get cancel meeting .
Which means update api is replacing the attendees , not adding.
Is that the case for Update api?
{
"subject" : "Test update calendar",
"attendees": [
{
"emailAddress": {
"address": "XXX@paypal.com"
},
"type": "Required"
}
]
}