Hey @Anonymous
I used the "Office365Outlook.CalendarDeleteItemV2()" command in Power Apps to delete the item. It has the parameters "Calendar" and "Item [id]". To select the correct calendar I created a dropdown with the function "Office365Outlook.CalendarGetTablesV2().value". Displayname is "name".
This is my OnSelect-function on my button to delete items:
Office365Outlook.CalendarDeleteItemV2(Dropdown1.SelectedText.id,First(Office365Outlook.CalendarGetItems(Dropdown1.SelectedText.id).value).Id)
Because you cannot save the ID of the created item (if you do not use a Power Automate Flow), I used the "First" action to get the last created item from my calendar. Then the last created event will be deleted.
Hope this will help you!
Best regards
Marvin
If you like this post, give a Thumbs up. If it solved your request, Mark it as a Solution to enable other users to find it.