how to create datetime from a negative epoch in Python
First timer on StackExchange. I am working with ArcGIS Server and Python. While trying to execute a query using the REST endpoint to a map service, I am getting the values for a field that is esriFieldTypeDate in negative epoch in the JSON response. The JSON response looks like this: { "feature" : { "attributes" : { "OBJECTID" : 11, "BASIN" : "North Atlantic", "TRACK_DATE" : -3739996800000, } , "geometry" : { "paths" : [ [ [-99.9999999999999, 30.0000000000001], [-100.1, 30.5000000000001] ] ] } } } The field I am referring to is "TRACK_DATE" in the above JSON. The values returned by ArcGIS