after new year, Outlook event ID changes when events are updated or deleted, causing flow to fail because stored ID in SharePoint no longer matches the real event
solution:
use iCalUId instead of ID to track calendar events
after "Skapa händelse (V4)", add short delay (2-5 sec)
use "Hämta händelse (V4)" to get full event details
get iCalUId from response: outputs('Hämta_händelse_(V4)')?['body/iCalUId']
save this iCalUId to SharePoint list
when updating or deleting, use "List händelser" with filter
iCalUId eq 'yourStorediCalUId'
get the current ID from result, then run update or delete
make sure SharePoint column for iCalUId is type text
avoid using ID directly in future flows for calendar sync
Was this reply helpful?YesNo
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.