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
0
votes
2 answers

VBA Filter All-Day Outlook Reoccurring Appointments for Today

How can I use the VBA restrict function to filter for all day reoccurring Outlook calendar appointments that are today? I have a reoccurring appointment every other week and it's set as an all-day appointment. My attempt: Dim olApp As…
sushi
  • 274
  • 1
  • 4
  • 13
0
votes
1 answer

How to add an outlook calendar event to a shared calendar using Python

With this python code I can make an outlook event in my personal calendar but I would like to make an event in a shared outlook calendar. FolderPath of the outlook calendar: \Public Folders - my.email@company.com\All Public…
0
votes
1 answer

Invalid argument (callbackUrlScheme): must be a valid URL scheme: "com.test.app"

I am unable to run this code when I am try to run this code using oauth2_client This package shows an error [ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: Invalid argument (callbackUrlScheme): must be a valid URL scheme:…
Aqib shahzad
  • 491
  • 1
  • 4
  • 11
0
votes
0 answers

User Calendar 404 in Microsoft Graph API results

When trying to access a user calendar (one created especially for the purpose, not their main one) through the Graph API, I get a 404. "/users/$email/calendars/$calendar_id" The calendar exists because it can be seen in the Outlook web app. Since…
0
votes
0 answers

List events of outlook calendar meeting room by a get request to display in a node app

I want to list all the meeting in the meeting room of outlook calendar through a get request in a node application. How is it possible? I tried Microsoft graph API but I cannot get any solutions. I have registered an app in Azure AD and generated…
0
votes
0 answers

How to access Outlook calendar with MacOS Python

I need to make a program that is able to access Outlook calendar events (specifically, the titles). I know there is probably a way to do this with the pywin32 module. But I have MacOS so it's not compatible. I tried looking up alternatives and the…
Jess
  • 9
  • 1
0
votes
2 answers

Can't populate DataGridView column with calendar meeting property

I'm working on a little side project of listing outlook calendar meetings in the form data grid view. I can populate columns with Subject and Start Date with no problem. For some reason, I can not populate a column with .DayOfWeekMask value, even…
Nawad-sama
  • 151
  • 2
  • 12
0
votes
0 answers

What event ID gets stored in a google calendar event when the event is created with the google calendar API?

I am writing a VBA script in Outlook that will add a calendar event to a google calendar each time the event is added to the Outlook calendar. I have this functionality working and this is the code I am using (in the code below, xxxxxxxxxxxxxxx is…
Jonathan Small
  • 1,027
  • 3
  • 18
  • 40
0
votes
1 answer

Easier way to retrieve (all) extended properties for an event?

As a followup to How to retrieve extended properties for calendar event (by name)? and How to retrieve extended properties of type datetime? : I actually have to retrieve 4 custom property values (string, datetime, 2 integers). The URL then becomes…
0
votes
1 answer

Add event to visitor`s outlook calendar by visitor from website

I am working on an educational platform. The platform contains study information for students. Student can see the deatils of their study plan by login into the site. I want to add a feature into my website for the students that, when a student…
0
votes
0 answers

Querying O365 Calendars With Chilkat

We've been using the Chilkat component with C# for ages to read and send emails. Works great, no problems. Now though we need to be able to extract Calendar data for meetings rooms, all of which have their own mail account setup so that they can all…
TheNeil
  • 11
  • 3
0
votes
0 answers

Does RFC 5545 allow specifying a nominal duration shorter than 24h?

Consider a recurring iCalendar event as follows: BEGIN:VCALENDAR BEGIN:VEVENT DTSTART;TZID=Europe/Vienna:20221029T010000 DURATION:PT4H RRULE:FREQ=DAILY END:VEVENT END:VCALENDAR The first two recurrences end at the following times: 2022-10-29 05:00…
MarkusM
  • 751
  • 1
  • 5
  • 14
0
votes
1 answer

Graph API calendar endpoint doesn't support sending Adaptive card as attachment

We are using https://graph.microsoft.com/v1.0/me/calendar/events for creating Calendar events. What we are trying to achieve additionally is to send an adaptive card as attachment. We are using below code as POST body { "subject": null, "body": { …
0
votes
0 answers

Microsoft Graph API Find meeting times the 1st attendee availability status showing free but for second attendee status showing unknown? how to fix?

Microsoft Graph API Find meeting times the 1st attendee availability status showing free but for second attendee status showing unknown how to show the availability status as free if both attendees are free? note: while passing two attendees in the…
0
votes
1 answer

Getting shared calendar events with Microsoft.Graph

I'm trying to recreate the following example: https://learn.microsoft.com/en-us/graph/outlook-get-shared-events-calendars I'm using ASP.NET Core 3.1, Azure AD, and the Microsoft.Graph API. I was able to retrieve events from my personal calendar, as…