Hi
api flows can use convert fornat from 2024-01-20T14:20:00Z to 2024-01-20 can it be done?
Interesting.. Seems like those commands are not available in this version of jackson-jq. I was able to get the below to work though..enterdttz as $input | $input | capture("(?<year>[0-9]{4})-(?<month>[0-9]{2})-(?<day>[0-9]{2})T(?<hour>[0-9]{2}):(?<minute>[0-9]{2}):(?<second>[0-9]{2}).(?<millisecond>[0-9]{3})-(?<timezone>[0-9]{2}):(?<timezone_minute>[0-9]{2})") | "(.year)(.month)(.day)"
You would want to use jq transform step for that. I use jqplay.org for testing these out, but below is how it could work.
hi Brandon Watson
If used in api flows function JQ Tramsform Can it be done?
I tried following the example you provided and got an error as shown in the third image.
thank you very much