Hello together,
It seems that the only way to update "Categories" of the Outlook Even is thru "Office365Outlook.CalendarPatchItem".
In the other versions, it seems that it has been removed.
My question is as follows:
What the syntax should be to update/add an additional category to the event, but not to delete the existing ones?
Here is my code:
Office365Outlook.CalendarPatchItem(
myCID,
EventsGallery.Selected.Id,
EventsGallery.Selected.End,
EventsGallery.Selected.Start,
EventsGallery.Selected.Subject,
{Categories: Table ({Value: "NewCategory"})}
);
Of course, when I post it, all categories are updated only with the new one = "NewCategory".
Thank you in advance for your help!
Kind Regards