Hi Lars,
The Data Bulk Export by Query action is limited to one call per hour, per the documentation .
When setting your “end” and “start” values, keep in mind that start
is the earliest time you would like to start the query, and end
is the end of the query range, or the latest time you would like to query. Setting end
to 0 will set the end of the range to now
. Here are a couple of Forum posts which utilize start
and end
:
Hi @Alexander_Farley ,
I apologize for the delay, I had to check with our engineering team for clarification on some behavior.
In the coming days, I am going to update the node and schema documentation for Time Series Queries. There are many possible combinations of variables within the Time Series request that produce varying results, and the documentation is lacking around this action. Once I have updated this documentation, I will link it below
I want to break down a couple of thing…
I’m using a Losant API node to perform a “Data: Timeseries” query. For the query, I am supplying a start-time and an end-time using a Virtual Button for testing:
{
"searchstart": 0,
"searchend": 1571436455
}
Using the above parameters, I get results which suggest that searchstart and searchend are being interpreted as seconds-since-epoch rather than milliseconds-since-epoch as stated here:
https://forums.losant.com/t/schema-for-the-body-of-a-time-series-query/1586/4
The time-series query …
Hi Julia,
I have the answer to the problem. After looking closely at your url, I noticed that the punctuation characters were escaped with a backslash:
…/export\?email\=ecn@systemsofmerritt.com\&start\=-1012000\&end\=0
The url below is what was giving us trouble:
…/export?email=ecn@systemsofmerritt.com&start=-1012000&end=0
I’m not sure why it even recognized the email, but it only does if it is the first thing after the “?”. I’m also not sure why I was having trouble with the Electric Imp h…
Thanks!
Julia