Hi @FacundoGorla ,
Do you want to get the event id that you last created?
If so, I suggest you get events by using V4CalendarGetItems function, and then sort the result based on created time.
The last item's ID would be the event id that you want.
Try this:
Last(Sort(Office365Outlook.V4CalendarGetItems(Calendar id).value,createdDateTime)).id
Please replace Calendar id with the Calendar id when you create the event.
You could use this to get the calendar id:
LookUp(Office365Outlook.CalendarGetTablesV2().value,name="Calendar").id
Or filter based on other name, like "Birthday","Holiday",etc.
Best regards,