I have a workflow with WebService tasks that send data to an external service with REST API calls.
I can’t figure out how to format a date correctly.
It’s a future date, and the required format is 2023-06-02T15:35:09.000Z where the T and Z are literal letters, and all the date and time fields have to be zero-padded on left.
I found this page: https://www.qualtrics.com/support/vocalize/dashboard-settings-cx/dashboard-data/advanced-fields/custom-date-formats/. It is for dashboards, but I figured the formatting codes would be consistent. Not so.
${date://OtherDate/yyyy-MM-ddTHHss.000Z/+3 day} produces this in the sent data:
23232323-JunJun-0505EDT1515:0606:4141.000-14400
Can someone please help me with the right syntax, or better yet, point me to the right place to learn?
Thanks!