Hello,
I would like to know if the following calendar/scheduler is possible to make with a model-driven app?
Based on each entry, i would require the following events to be made:
Event1 = user selected date
Event2 = Event1 date +7days
Event3 = Event2 date +3days
Etc.
Each subsequent event would need the ability to be manually adjusted too without affecting the prior dates/events.
And I assume the calendar would be accessible with an *.ical file/within Outlook calendar?
Is this doable? If so, could anyone direct me to some resources with where to start?
you need to use a mix of plugin or power automate and GraphAPI calls
then ICS file creation is simple, because .ics is purely a text file as shown below.
BEGIN:VCALENDAR
VERSION:2.0
BEGIN:VEVENT
SUMMARY:Meeting invite
DTSTART:20240512T093900Z
DTEND:20240529T093900Z
DTSTAMP:20240512T093941Z
UID:1715506781109-Meetinginvite
DESCRIPTION:sfs
LOCATION:
ORGANIZER:
STATUS:CONFIRMED
PRIORITY:0
END:VEVENT
END:VCALENDAR