ethLogShared
Back to API doc top page.
Click here for a complete list of operations.
GetStatsLuxRawByUUID
For specified tag id, retrieves raw temperature/humidity/lux data for a given date range.
Used for building the zoomed in graph.The date format would be like '12/11/2015' for December 11, 2015. ISO 8601 format can be used to specify time (e.g. 2020-07-10T15:00:00, represents the 10th of July 2020 at 3 p.m)
POST /ethLogShared.asmx/GetStatsLuxRawByUUID HTTP/1.1
Host: wirelesstags.net
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:[
        {
            lux:[
                double,
                double,
                ...
            ]
        },
        {
            lux:[
                double,
                double,
                ...
            ]
        },
        ...
    ]
}