Reputation: 3
I am using Outlook Calendar Rest API. I have define scope like:
SCOPES = [ 'outlook.office.com/mail.read',
'outlook.office.com/calendars.readwrite' ]
using request like: REQUEST = https://outlook.office.com/api/v2.0/me/events/
I am able to fetch events of calendar and also able to create a simple meeting on calendar using Rails framework. Now I want to change my organizer using this request /me/events. Is there any way to sort it out?
Upvotes: 0
Views: 1505
Reputation: 598
I don't think you will be able to change the organizer of a meeting by api, or even through Outlook application. Please see the following links:
https://www.extendoffice.com/documents/outlook/4401-outlook-change-meeting-organizer-owner.html
Upvotes: 1