ethLogShared


Back to API doc top page.

Click here for a complete list of operations.

GetEventRawDataByUUID

For specified tag UUID, retrieves all motion sensor related event log data.

POST /ethLogShared.asmx/GetEventRawDataByUUID HTTP/1.1
Host: wirelesstags.net
Content-Type: application/json; charset=utf-8
Content-Length: length

{
    "uuid":string
}
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Content-Length: length

{
    d:[
        {
            "timestamp":dateTime
            "type":Disarmed = 0 or Armed = 1 or Moved = 2 or Opened = 3 or Closed = 4 or DetectedMovement = 5 or TimedOut = 6 or Stabilizing = 7 or CarriedAway = 8 or InFreeFall = 9
            "date":string
            "time":string
            "eventType":string
            "durationSec":int
            "angle":double
        },
        {
            "timestamp":dateTime
            "type":Disarmed = 0 or Armed = 1 or Moved = 2 or Opened = 3 or Closed = 4 or DetectedMovement = 5 or TimedOut = 6 or Stabilizing = 7 or CarriedAway = 8 or InFreeFall = 9
            "date":string
            "time":string
            "eventType":string
            "durationSec":int
            "angle":double
        },
        ...
    ]
}