outlook-calendar

Is it possible to programmatically access the selected appointment (event) in outlook using Office Add In

萝らか妹 提交于 2021-02-08 11:45:24
问题 How to get the selected appointment data from outlook calendar Add Ins. I have added the Add Ins in Outlook calendar. I want to get the selected appointment ( event ) data. Because i need to display the selected event in Outlook Add Ins. Is this possible ? ( using javascript ) 回答1: You can use Office.js APIs to get the details of current item or mailbox. For selected item's data you can use Office.context.mailbox.item APIs. Please check the API reference doc for complete API set. 来源: https:/

Why is Microsoft Graph API telling me events I've just created are being “@removed” when they are still there?

淺唱寂寞╮ 提交于 2021-01-01 09:24:13
问题 When I am doing a POST to me/calendars/[calendar-id]/events with the following payload. It successfully creates the event, and I receive the new event's id: { "start": { "timeZone": "America/Chicago", "dateTime": "2022-12-23T15:00:00" }, "end": { "timeZone": "America/Chicago", "dateTime": "2022-12-23T18:00:00" }, "subject": "Please don't delete me!", "body": { "contentType": "text", "content": "I'm just an event in the future, I wonder if I'll send a '@removed' notice?" } "isCancelled": false

Why doesn't my shared calendar event show the updated attendee response statuses in Office365?

白昼怎懂夜的黑 提交于 2020-04-17 21:18:41
问题 If I create a calendar in Office365 and share it with user A, then create an event on that calendar with user A as an attendee, user A's response status is never reflected on the shared event. It always just says, "user A didn't respond." on my calendar. Even when viewing the shared event from user A's calendar, it says "You didn't respond." For example: I create an event on a shared calendar and add user A as an attendee User A sees two calendar events, one on their default calendar and one

Why doesn't my shared calendar event show the updated attendee response statuses in Office365?

孤者浪人 提交于 2020-04-17 21:14:11
问题 If I create a calendar in Office365 and share it with user A, then create an event on that calendar with user A as an attendee, user A's response status is never reflected on the shared event. It always just says, "user A didn't respond." on my calendar. Even when viewing the shared event from user A's calendar, it says "You didn't respond." For example: I create an event on a shared calendar and add user A as an attendee User A sees two calendar events, one on their default calendar and one

Is Microsoft Graph API calendarView limited to a single month? How to get all events?

寵の児 提交于 2020-03-21 19:21:20
问题 Is Microsoft Graph API calendarView limited to a single month? How can I get all events? Is there some implicit pagination? I'm first checking the JSON output of events between 2017-01-01 and 2018-12-30 : https://graph.microsoft.com/v1.0/me/calendar/calendarView?startDateTime=2017-01-01T00:00:00.0000000&endDateTime=2018-12-30T00:00:00.0000000 and list the dates jq '.value[] .start .dateTime' "2017-11-22T13:30:00.0000000" "2017-11-23T14:00:00.0000000" "2017-11-24T14:00:00.0000000" "2017-11

Is Microsoft Graph API calendarView limited to a single month? How to get all events?

心已入冬 提交于 2020-03-21 19:20:32
问题 Is Microsoft Graph API calendarView limited to a single month? How can I get all events? Is there some implicit pagination? I'm first checking the JSON output of events between 2017-01-01 and 2018-12-30 : https://graph.microsoft.com/v1.0/me/calendar/calendarView?startDateTime=2017-01-01T00:00:00.0000000&endDateTime=2018-12-30T00:00:00.0000000 and list the dates jq '.value[] .start .dateTime' "2017-11-22T13:30:00.0000000" "2017-11-23T14:00:00.0000000" "2017-11-24T14:00:00.0000000" "2017-11

Get user calendar using OutlookClient

笑着哭i 提交于 2019-12-29 09:33:52
问题 I'm using Outlook-SDK-Android (https://github.com/OfficeDev/Outlook-SDK-Android) to talk with Outlook Calendar REST API (https://msdn.microsoft.com/en-us/office/office365/api/calendar-rest-operations). So far I've been able to get the events on my own calendar using: import com.microsoft.services.outlook.fetchers.OutlookClient; OutlookClient mClient; ... mClient = new OutlookClient(outlookBaseUrl, mResolver); ... mClient.getMe() .getCalendarView() .addParameter("startDateTime", startDate)

Outlook Calendar Rest API (create meeting using /me/events request with change organizer)

[亡魂溺海] 提交于 2019-12-25 06:25:34
问题 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? 回答1: I don't think you will be able to change the

POST and DELETE a booking using OutlookClient and Outlook Calendar API

為{幸葍}努か 提交于 2019-12-13 05:31:59
问题 I'm using Outlook-SDK-Android (MS) to talk with Outlook Calendar REST API. So far I've been able to get the events from my calendar using: import com.microsoft.services.outlook.fetchers.OutlookClient; OutlookClient mClient; ... mClient = new OutlookClient(outlookBaseUrl, mResolver); final List<Event> events = mClient .getMe() //.getUsers() //.getById("meetingRoom@company.com") // This gives me back 403 :( .getCalendarView() .addParameter("startDateTime", startDate) .addParameter("endDateTime"

Log in into Outlook meeting room account

拥有回忆 提交于 2019-12-12 02:13:52
问题 Is it possible to log in into an Office365 Meeting Room user? I need to use an android app for each Meeting Room of my company and get the meeting room bookings to save them into a shared local repository. I have to use Outlook Calendar REST API to get the meetings, is it possible? "The meeting rooms have resource accounts, not user accounts. This means they cannot be logged into" .. is this true?? Many thanks 回答1: It is true, you cannot log in to resource accounts. Today in order to access