I'm struggling to get humidity reading through API. I've been trying to use GetLatestMultiTagStatsByUUIDs method. The problem is that I'm not sure what type should be used for humidity (I found that "temperature" works to get temperature readings).
POST /ethLogShared.asmx/GetLatestMultiTagStatsByUUIDs HTTP/1.1
Host: mytaglist.com
Content-Type: application/json; charset=utf-8
Content-Length: length
{
ids:[
...
],
"type":string
}
However, when I tried setting "humidity" as type, I'm getting the following error message:
{"Message":"Invalid column name \u0027humidity\u0027.","StackTrace":"
so, I suppose that it should be some other type for humidity. Could you please let me know what should I use to get humidity reading?