UPENDRA KUMAR
UPENDRA KUMAR

Reputation: 1

create a calendar event for a whole team ( participants) using the graph api

Is it possible to create a calendar event for a whole team using the graph api? Right now, the calendar is coming only in the logged in/organizer account through which the event/meeting is being created But, I want to have this feature for every users/attendees/participants in their calendars. If it is not possible, then, can a separate meeting invite be sent to every users in the attendees list to accept the event/meeting so that they can be notified about the event which has been created and which they need to attend.

Upvotes: 0

Views: 1374

Answers (1)

Nivedipa-MSFT
Nivedipa-MSFT

Reputation: 1460

You can create Microsoft 365 group of users and use below API to create event.

POST /groups/{id}/calendar/events

The calendar can be one for a user, or the default calendar of a Microsoft 365 group.

Ref Doc: https://learn.microsoft.com/en-us/graph/api/calendar-post-events?view=graph-rest-1.0&tabs=http

Upvotes: 1

Related Questions