Skip to main content
Converts a date value to another format based on the given criteria. Use this when a date arrives in one shape but needs to look different downstream, for example turning an ISO timestamp like 2026-03-09T14:30:00Z into 09-03-2026. You can also shift the date between timezones along the way, so a value stored in UTC can be written out in local time. If a value cannot be read as a date, the run fails with an error, so it is worth confirming the formats match your data.

Fields

Sample data

FieldValue
Output formatd-m-Y
Output timezoneEurope/Amsterdam
Input:
{ "orderDate": "2026-03-09T14:30:00Z" }
Output:
{ "orderDate": "09-03-2026" }