Hi folks
We are initiating a Workflow from a Web Report and starting the web report from a REST API call. One of the attributes is a DATETIME and I am able to send the appropriate string to get the DATE part set, but all my efforts at setting the time are failing.
I've tried "02/05/2024 09:42 AM", "02/05/2024 9:42 AM", "02/05/2024 09:42:00", and even using slashes instead of colons "02/05/2024/09/42/00" (not that I expected that to work) — in all cases the time part is ignored but the workflow does get initiated.
Both the WR attribute and the WF attribute have been set to "Enable Time" / "Include Time Field" — can anybody provide the correctly formatted string to put in the "/v1/nodes/$($WRID)/output" REST body?
$reqdate = [uri]::EscapeDataString('02/12/2024 9:49 AM')
Dave