What is the time format returned by SMG when querying Message Audit Logs using REST API?
Symantec Messaging Gateway 10.9.X
The REST API returns time values in UNIX Epoch format, which represents the number of milliseconds that have passed since January 1, 1970, 00:00:00 UTC (the "epoch").
In this example, the field "acceptTime" contains the value 1754308198000. This is the number of milliseconds since the UNIX epoch.
To convert this timestamp to a human-readable format in your local time zone, follow these steps:
Divide the value by 1,000 to convert milliseconds to seconds.
Use a date-time conversion tool or programming language to translate that into a date and time.