Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

NameData TypeNullableDevice TypeDescription
id64StringNoALLThe Bluvision unique hardware identifier.
macAddressStringNoALLMedia Access Control Address.
deviceIdStringNoALLUnique record locator of device. For Blufi, this is synonymous with "adapterId". For beacons, this is usually the same as the "id64" value.
nameStringYesALLFriendly name assigned by administrator.
statusStringNoALLThe Bluzone Cloud status of the device.
deviceTypeStringNoALLOne of BLUFI or BEACON.
firmwareTypeStringNoALLType of firmware currently installed.
firmwareVersionStringNoALLVersion of firmware currently installed.
latitudeNumberYesALLGeographic latitude value in decimal format.
longitudeNumberYesALLGeographic longitude value in decimal format.
floorNumberNumberYesALLThe floor number.
metaDataJSONYesALLMeta-data structure assigned by the administrator.
uuidStringYesBEACONThe iBeacon UUID value.
majorNumberYesBEACONThe iBeacon Major value.
minorNumberYesBEACONThe iBeacon Minor value.
tagsArrayYesALLA list of tag names that are associated with the given device in the Bluzone Cloud.
dateCreatedStringNoALLTimestamp of when this record was created.
dateUpdatedStringNoALLLast modified timestamp for this record.

...

Code Block
HTTP/1.x 200 OK
Content-Type:  application/json
[
  {
    "id64": "16179664999283123558",
    "macAddress": "01:ed:43:48:4e:1a:86",
    "deviceId": "16179664999283123558",
    "name": "Concierge Waypoint 3",
    "status": "PENDING_UPDATE",
    "deviceType": "BEACON",
    "firmwareType": "iBeek(Ti)",
    "firmwareVersion": null,
    "latitude": 26.06289226658518,
    "longitude": -80.1861864781028,
    "floorNumber": 2,
    "metaData": {
      "beaconType": "CheckinDesk",
      "terminal": "D",
      "concourse": "1",
      "airside": false,
      "publicBeacon": true
    },
    "uuid": "b2f4ce54-3060-4fb7-97c2-b6fbb2d3c260",
    "major": 2100,
    "minor": 1228,
    "dateCreated": "2015-04-29",
    "dateUpdated": "2015-08-25"
  },  
  {
    "id64": "3417654221413133211",
    "macAddress": "5c:31:3e:04:59:09",
    "deviceId": "93721",
    "name": "Front Desk: Reception",
    "status": "CONNECTED",
    "deviceType": "BLUFI",
    "firmwareType": "Blufi",
    "firmwareVersion": null,
    "latitude": 26.06289226658518,
    "longitude": -80.1861864781028,
    "floorNumber": 1,
    "metaData": null,
    "uuid": null,
    "major": null,
    "minor": null,
    "tags": ["Blufi", "Test Device"],
    "dateCreated": "2015-08-04",
    "dateUpdated": "2015-08-23"
  }
]

...