After using a formatDate function we got a wrong date

Okay, what date format does your CRM expect?

If it is a date field coming from Calendly, there’s a good chance it’ll be in ISO-8601 (UTC time) time format. Make will show it as human readable in the output, but if you hover over the output value, you’ll see the “raw” value.
image

You can also click on the Download output bundles and see the raw value there.
image
image

So if that’s a time format your CRM can work with, you don’t have to convert it. If they would need a more standard DD-MM-YYYY HH:MM format (like 29-03-2024 12:15) you would need to convert it like this:

image

{{formatDate(1.inputTime; "DD-MM-YYYY HH:MM")}}

image

2 Likes