I have tried all these expressions, are ordered from the first one I used to the last one I used:
formatDateTime(addMinutes(body('Obtener_los_detalles_de_la_respuesta')?['red5d742076fa403b87703117c5325c35'], 480), concat(formatDateTime(utcNow(), 'yyyy'), '-', 'MM-ddTHH:mm:ss'))
formatDateTime(addMinutes(body('Obtener_los_detalles_de_la_respuesta')?['red5d742076fa403b87703117c5325c35'], 480), concat(formatDateTime(addHours(utcNow(), -5), 'yyyy'), '-', 'MM-ddTHH:mm:ss'))
concat(formatDateTime(convertFromUtc(utcNow(), 'SA Pacific Standard Time'), 'yyyy'), '-', formatDateTime(body('Obtener_los_detalles_de_la_respuesta')?['red5d742076fa403b87703117c5325c35'], 'MM-ddT08:00:00'))
concat(formatDateTime(convertFromUtc(utcNow(), 'America/Bogota'), 'yyyy'), '-', formatDateTime(body('Obtener_los_detalles_de_la_respuesta')?['red5d742076fa403b87703117c5325c35'], 'MM-ddT08:00:00'))This one was wrong:
concat(formatDateTime(convertFromUtc(utcNow(), -5), 'yyyy'), '-', formatDateTime(body('Obtener_los_detalles_de_la_respuesta')?['red5d742076fa403b87703117c5325c35'], 'MM-ddT08:00:00'))This isn't wrong:
concat(formatDateTime(addHours(utcNow(), -5), 'yyyy'), '-', formatDateTime(body('Obtener_los_detalles_de_la_respuesta')?['red5d742076fa403b87703117c5325c35'], 'MM-ddT08:00:00'))Every expression except the wrong one created the event but still using UTC as time zone, as I said I want create events for birthdays at a specific time (8:00AM - 8:30AM) using my time zone (UTC -5, SA Pacifict Standard Time)