question

KrishnalakshmiViswanathanAWF-2525 avatar image
0 Votes"
KrishnalakshmiViswanathanAWF-2525 asked NiketaMane-4916 answered

Is it possible to forward calendar event to new attendees?

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"
}
]
}


microsoft-graph-calendar
· 1
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

Adding right tags/teams to assist

0 Votes 0 ·
Deva-MSFT avatar image
0 Votes"
Deva-MSFT answered

You can use event:forward() API call which allows the organizer or attendee of a meeting event to forward the meeting request to a new recipient.

For example,

 POST /me/events/{id}/forward



5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

NiketaMane-4916 avatar image
0 Votes"
NiketaMane-4916 answered

@Deva-MSFT will the update api not able to add new recipients into existing calendar event ?

5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.