Questions tagged [outlook-calendar]

outlook-calendar is related to the calendar function of Outlook (which is a personal information manager from Microsoft, available as a part of the Microsoft Office suite).

as per wikipedia:

Calendar compatibility ##

Outlook does not fully support data and syncing specifications for calendaring and contacts, such as iCalendar, CalDAV, SyncML, and vCard 3.0. Outlook 2007 claims to be fully iCalendar compliant; however, it does not support all core objects, such as VTODO or VJOURNAL [...] Outlook has also been criticized for having proprietary "Outlook extensions" to these Internet standards.

183 questions
1
vote
1 answer

Problem with read Outlook shared calendar via python

I try to make an application to read events from Outlook shared calendar. I use Python 3.8.0 on win10. Here is my function to do this. def getSharedCalendarEntries(TS_name, days=1000): #TS_name is name of shared calendar MailboxToAccess =…
1
vote
1 answer

Create an appointment in outlook calendar with C#

I want to create an appointment in outlook calendar.I already made some code in which allows you to set your own appointments but is not working as it should var pcaOptions = new PublicClientApplicationOptions { ClientId = "xxxxxx", …
Vishal Parmar
  • 524
  • 7
  • 27
1
vote
1 answer

How to get outlook free busy schedule using microsoft-graph sdk php

I am using microsoft-graph api sdk here is the url: msgraph-sdk-php I need to check if an user's appointment is available / busy in the outlook calendar. I am trying using following code $graph = new…
1
vote
1 answer

Get code from Outlook Calendar API using Oauth2

I'm working with calendar API using .net core and Angular. I finished all the steps using Google Calendar API. Now I want to do it using Outlook Calendar API. So first of all I need a function in Angular so i can connect to my account ang get a…
Kha15
  • 51
  • 1
  • 1
  • 6
1
vote
2 answers

Previously working Calendar Invite has stopped working for outlook email client but working for Gmail client

I am using Sendgrid for sending emails and Ical4j library to create a calendar invite. The below-mentioned code was working fine a few months back and all the calendar invites sent through were also showing up all the required things such as;…
Prasanna
  • 131
  • 1
  • 11
1
vote
0 answers

Given ics VALARM properies are not appearing in Google Calendar or Outlook

I'm not able to find a solution or answer to this question because there appears to be a lot developers out there experiencing it. I'm generating an ics file but the VALARMS are not setting reminders in google calendar or outlook 2007. My ics file…
1
vote
1 answer

Microsoft Graph - Can't read/write the calendar of other users

I have a web app registered on Azure with the goal of being able to read and write the calendars of other users. To do so, I set these permissions for this app on Azure. However, when I try to, for example, create a new event for a given user, I get…
1
vote
0 answers

Cross-calendar integration (Google Calendar & Outlook Calendar)

I'm working with Google Calendar(GC) and Outlook Calendar(OC) APIs. Let's say a GC user invites an OC user to an event created in GC. When creating a new event in the OC user's calendar, the OC API creates a new event ID instead of using the…
1
vote
0 answers

Does the Outlook API have a method that returns a room’s capacity information?

Wondering if there is an Outlook API method that is available that can give us the room's capacity information? Also, confirming that the only way to get a room's availability is to use the FindTime API?
1
vote
2 answers

Creating event in outlook calendar using node.js

I have searched everywere and I am not able to find a proper resource where creating event in outlook-calender is done.Please,can someone provide me the code which creates a outlook-calender using Node.js
Rishabh Nigam
  • 223
  • 3
  • 10
1
vote
0 answers

Not receiving push notifications for deleted events?

I have a calendar tool that integrates with Outlook Calendar. To respond to changes on the Outlook side, I subscribe to push notifications. If I miss the first notification of a change, Outlook sends others with ChangeType: 'Missed' and I…
wrayjs
  • 56
  • 7
1
vote
0 answers

SmtpClient fails to send ical meeting invite when there's a period in Organizer's email

I am trying to send an Meeting Invite with C# and for some reason it will not be sent if the Organizer's email address has a period. ORGANIZER;CN="John, Song":mailto:song.john@company.com It will work if I remove the period in the email…
Brian
  • 301
  • 3
  • 8
1
vote
1 answer

Office365 Calendar REST API -- cannot delete calendars

I'm working on a project where I add and update sports calendars to a user's Outlook calendar. I'm facing a consistent issue where I can't delete ANY calendars via the API or the desktop web application. Every time I delete a calendar through the…
Mark
  • 51
  • 1
  • 9
1
vote
1 answer

Subscribe push notification using ews

I tried to subscribe push notification for calendar event using ews soap request. But unfortunately it failed Error: The request failed schema validation: Could not find schema information for the element 'Subscribe'. I follow the link :…
Julkar Nain
  • 41
  • 1
  • 5
1
vote
1 answer

How to get other user events (respecting permissions) when using app-only approach in MS Graph API?

I have an application that calls MS Graph API to get users' events. This app uses app-only auth mode (http://graph.microsoft.io/en-us/docs/authorization/app_only). I can get events for every user, but I'd like to be able to get events for user A not…