Hello,
I'm trying to build a flow that creates an outlook event when an item is created, but I keep running into this error:
Flow save failed with code 'OpenApiOperationParameterValidationFailed' and message 'Input parameter 'item' validation failed in workflow operation 'Create_event_(V4)': The parameter with value '"@triggerOutputs()?['body/DraftDueBy']"' in path 'item/start' with type/format 'String/date-time' is not convertible to type/format 'String/date-no-tz'.'.
It seems that it's related to the start/end time format - does anyone know how to adjust the expression or does anyone have another way of creating this flow?
my flow:

I want the event to be 1 hour long, so my end time expression is set to the following:
addHours(item()?['DraftsDueBy'],1,'yyyy-MM-dd')
Thank you!