ethLogShared
Back to API doc top page.
Click here for a complete list of operations.
GetMultiTagStatsRawByUUIDs
For specified list of tag ids, retrieves raw temperature, battery voltage or humidity for specified date range
POST /ethLogShared.asmx/GetMultiTagStatsRawByUUIDs HTTP/1.1
Host: mytaglist.com
Content-Type: application/json; charset=utf-8
Content-Length: length
{
ids:[
...
],
"type":string
"fromDate":string
"toDate":string
}
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Content-Length: length
{
d:{
stats:[
{
"date":string
values:[
{
double,
double,
...
},
{
double,
double,
...
},
...
],
tods:[
{
int,
int,
...
},
{
int,
int,
...
},
...
]
},
{
"date":string
values:[
{
double,
double,
...
},
{
double,
double,
...
},
...
],
tods:[
{
int,
int,
...
},
{
int,
int,
...
},
...
]
},
...
]
}
}