ethLogShared
Back to API doc top page.
Click here for a complete list of operations.
GetStatsRawByUUID
For specified tag UUID, retrieves raw temperature/humidity data for a given date range.
Used for building the zoomed in graph.POST /ethLogShared.asmx/GetStatsRawByUUID HTTP/1.1
Host: mytaglist.com
Content-Type: application/json; charset=utf-8
Content-Length: length
{
"uuid":string
"fromDate":string
"toDate":string
}
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Content-Length: length
{
d:[
{
"date":string
tods:[
int,
int,
...
],
temps:[
double,
double,
...
],
caps:[
float,
float,
...
]
},
{
"date":string
tods:[
int,
int,
...
],
temps:[
double,
double,
...
],
caps:[
float,
float,
...
]
},
...
]
}