Hi all,
I have an API to call from our application, in which we need to send message timestamp in ISO UTC format "2025-04-02T15:57:77Z"
So now apart from formatting the date time with concatenating T and Z, do we have any other function which can directly convert time to this?
Discussion posts and replies are publicly visible
Try using this
text(todatetime(yourdatetime), "yyyy-MM-dd'T'HH:mm:ss'Z'")
I have already tried it, it is using "Z" to display timezone
oh then use
concat(text(togmt(now()), "yyyy-MM-ddTHH:mm:ss"),"Z")