ethLogShared


Back to API doc top page.

Click here for a complete list of operations.

GetTemperatureRawDataByUUID

For specified tag UUID, retrieves raw data used to build the downloaded csv file

POST /ethLogShared.asmx/GetTemperatureRawDataByUUID 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:[
        {
            "time":string
            "temp_degC":double
            "cap":double
            "lux":double
            "battery_volts":double
        },
        {
            "time":string
            "temp_degC":double
            "cap":double
            "lux":double
            "battery_volts":double
        },
        ...
    ]
}