Dear PA Users and Support team,
I would like to know if downloaded PA data are in UTC or local time? The description about ‘start_timestamp’ and ‘start_timestamp’ is not clear w.r.t. it.
For example, UNIX time stamp: 1589772600 is Mon May 18 2020 03:30:00 GMT+0000 and Sun May 17 2020 19:30:00 GMT-0800 (Pacific Standard Time), so when we download the data from PA using this time stamp then in which date/time PA will return the data?
Thank you!
start_timestamp: The time stamp of the first required history entry. Query is executed using data_timestamp >= start_timestamp
.
Time can be specified as a UNIX time stamp in seconds or an ISO 8601 string. ISO 8601 - Wikipedia.
The time_stamp column in the resulting JSON or CSV will be in the same format and or time zone that you use for this start_timestamp
parameter.
If not specified, the last maximum time span for the requested average will be returned.|
end_timestamp: The end time stamp of the history to return. Query is executed using data_timestamp < end_timestamp
.
Time can be specified as a UNIX time stamp in seconds or an ISO 8601 string. ISO 8601 - Wikipedia.
If not specified, the maximum time span will be returned starting from the provided start_timestamp
.|