Is there a way to apply magic dates (doDateDeltaFromCurrent) for an epoch time (Unix time) format? Have a VS response that sends back a timestamp in epoch format and need to send the current DateTime stamp.
DevTest 10.X
Lisa
Service Virtualization
SV
NA
If it is the current timestamp that need to be sent (so, no delta) then put the following in your responses:
{{=java.time.Instant.now().toEpochMilli();}}
If we need to do an offset of D,H,S,sss.. do we have any solutions??