Devices

The Devices endpoint can be used to obtain more details on a device and its capabilities. It is also used to pair devices by using zigbee install codes.

Get all Devices 

GET /api/<apikey>/devices

Returns a list of all devices. If there are no devices in the system, an empty array [] is returned.

Parameters

None

Response


HTTP/1.1 200 OK


[
  "00:21:2e:ff:ff:47:62:36",
  "00:15:8d:00:a3:b4:00:f2",
  "00:15:8d:00:13:b9:29:e7"
]

Possible errors

403 Forbidden


Get Device 

GET /api/<apikey>/devices/<device_mac_address>

Returns the device details with the specified device MAC address.

Important

The device MAC address in the request URL must be provided with colons!

Parameters

None

Response


HTTP/1.1 200 OK


{
  "lastannounced": null,
  "lastseen": "2023-08-05T20:04Z",
  "manufacturername": "IKEA of Sweden",
  "modelid": "TRADFRI remote control",
  "name": "TRADFRI remote control",
  "productid": "TRADFRI remote control E1810",
  "subdevices": [
    {
      "config": {
        "alert": {
          "lastupdated": "2022-09-24T22:57:55Z",
          "value": "none"
        },
        "battery": {
          "lastupdated": "2023-03-10T00:47:58Z",
          "value": 0
        },
        "group": {
          "lastupdated": "2022-09-24T22:57:55Z",
          "value": "8"
        },
        "on": {
          "lastupdated": "2022-09-24T22:59:55Z",
          "value": true
        },
        "reachable": {
          "lastupdated": "2023-08-05T22:09:43Z",
          "value": true
        }
      },
      "state": {
        "buttonevent": {
          "lastupdated": "2022-09-24T23:03:58Z",
          "value": 1002
        }
      },
      "type": "ZHASwitch",
      "uniqueid": "60:a4:23:ff:ba:f0:47:22-01-1000"
    }
  ],
  "swversion": "2.3.014",
  "uniqueid": "60:a4:23:ff:ba:f0:47:22"
}

Response fields

Todo

General device information, config and state attributes of the defined subdevices with their respective values including last update time are presented.

Possible errors

403 Forbidden

404 Not Found


Get Device DDF 

GET /api/<apikey>/devices/<device_mac_address>/ddf

Returns the DDF of the device specified by the provided MAC address.

Important

The device MAC address in the request URL must be provided with colons!

Parameters

None

Response


HTTP/1.1 200 OK


{
  "schema": "devcap1.schema.json",
  "manufacturername": "$MF_IKEA",
  "modelid": "TRADFRI remote control",
  "vendor": "IKEA of Sweden",
  "product": "TRADFRI remote control E1810",
  "sleeper": true,
  "status": "Gold",
  "path": "/devices/ikea.json",
  "subdevices": [
    {
      "type": "$TYPE_SWITCH",
      "restapi": "/sensors",
      "uuid": [
        "$address.ext",
        "0x01",
        "0x1000"
      ],
      "meta": {
        "group.endpoints": [
          1
        ]
      },
      "fingerprint": {
        "profile": "0x0104",
        "device": "0x0820",
        "endpoint": "0x01",
        "in": [
          "0x0000",
          "0x0001",
          "0x1000"
        ],
        "out": [
          "0x0006",
          "0x0008",
          "0x0005"
        ]
      },
      "items": [
        {
          "name": "attr/id"
        },
        {
          "name": "attr/lastannounced"
        },
        {
          "name": "attr/lastseen"
        },
        {
          "name": "attr/manufacturername"
        },
        {
          "name": "attr/modelid"
        },
        {
          "name": "attr/name"
        },
        {
          "name": "attr/swversion"
        },
        {
          "name": "attr/type"
        },
        {
          "name": "attr/uniqueid"
        },
        {
          "name": "config/alert"
        },
        {
          "name": "config/battery",
          "refresh.interval": 86400,
          "read": {
            "at": "0x0021",
            "cl": "0x0001",
            "ep": 1,
            "fn": "zcl"
          },
          "parse": {
            "at": "0x0021",
            "cl": "0x0001",
            "ep": 1,
            "eval": "Item.val = Attr.val;",
            "fn": "zcl"
          },
          "default": 0
        },
        {
          "name": "config/group",
          "default": "auto"
        },
        {
          "name": "config/on"
        },
        {
          "name": "config/reachable"
        },
        {
          "name": "state/buttonevent",
          "awake": true
        },
        {
          "name": "state/lastupdated"
        }
      ]
    }
  ],
  "bindings": [
    {
      "bind": "unicast",
      "src.ep": 1,
      "cl": "0x0001",
      "report": [
        {
          "at": "0x0021",
          "dt": "0x20",
          "min": 300,
          "max": 3600,
          "change": "0x00000001"
        }
      ]
    },
    {
      "bind": "groupcast",
      "config.group": 0,
      "src.ep": 1,
      "cl": "0x0005"
    },
    {
      "bind": "groupcast",
      "config.group": 0,
      "src.ep": 1,
      "cl": "0x0006"
    },
    {
      "bind": "groupcast",
      "config.group": 0,
      "src.ep": 1,
      "cl": "0x0008"
    }
  ]
}

Response fields

Note

The device returns the full DDF for the device.

Possible errors

403 Forbidden

404 Not Found


Get Full Device DDF 

GET /api/<apikey>/devices/<device_mac_address>/ddffull

Returns the full DDF of the device specified by the provided MAC address.

Important

The device MAC address in the request URL must be provided with colons!

Note

There’s currently no real distinction between DDF and full DDF (yet).

Parameters

None

Response


HTTP/1.1 200 OK


{
  "schema": "devcap1.schema.json",
  "manufacturername": "$MF_IKEA",
  "modelid": "TRADFRI remote control",
  "vendor": "IKEA of Sweden",
  "product": "TRADFRI remote control E1810",
  "sleeper": true,
  "status": "Gold",
  "path": "/devices/ikea.json",
  "subdevices": [
    {
      "type": "$TYPE_SWITCH",
      "restapi": "/sensors",
      "uuid": [
        "$address.ext",
        "0x01",
        "0x1000"
      ],
      "meta": {
        "group.endpoints": [
          1
        ]
      },
      "fingerprint": {
        "profile": "0x0104",
        "device": "0x0820",
        "endpoint": "0x01",
        "in": [
          "0x0000",
          "0x0001",
          "0x1000"
        ],
        "out": [
          "0x0006",
          "0x0008",
          "0x0005"
        ]
      },
      "items": [
        {
          "name": "attr/id"
        },
        {
          "name": "attr/lastannounced"
        },
        {
          "name": "attr/lastseen"
        },
        {
          "name": "attr/manufacturername"
        },
        {
          "name": "attr/modelid"
        },
        {
          "name": "attr/name"
        },
        {
          "name": "attr/swversion",
          "refresh.interval": 86400,
          "read": {
            "at": "0x4000",
            "cl": "0x0000",
            "ep": 0,
            "fn": "zcl"
          },
          "parse": {
            "at": "0x4000",
            "cl": "0x0000",
            "ep": 255,
            "eval": "Item.val = Attr.val",
            "fn": "zcl"
          }
        },
        {
          "name": "attr/type"
        },
        {
          "name": "attr/uniqueid"
        },
        {
          "name": "config/alert"
        },
        {
          "name": "config/battery",
          "refresh.interval": 86400,
          "read": {
            "at": "0x0021",
            "cl": "0x0001",
            "ep": 1,
            "fn": "zcl"
          },
          "parse": {
            "at": "0x0021",
            "cl": "0x0001",
            "ep": 1,
            "eval": "Item.val = Attr.val;",
            "fn": "zcl"
          },
          "default": 0
        },
        {
          "name": "config/group",
          "default": "auto"
        },
        {
          "name": "config/on",
          "default": true
        },
        {
          "name": "config/reachable"
        },
        {
          "name": "state/buttonevent",
          "awake": true
        },
        {
          "name": "state/lastupdated"
        }
      ]
    }
  ],
  "bindings": [
    {
      "bind": "unicast",
      "src.ep": 1,
      "cl": "0x0001",
      "report": [
        {
          "at": "0x0021",
          "dt": "0x20",
          "min": 300,
          "max": 3600,
          "change": "0x00000001"
        }
      ]
    },
    {
      "bind": "groupcast",
      "config.group": 0,
      "src.ep": 1,
      "cl": "0x0005"
    },
    {
      "bind": "groupcast",
      "config.group": 0,
      "src.ep": 1,
      "cl": "0x0006"
    },
    {
      "bind": "groupcast",
      "config.group": 0,
      "src.ep": 1,
      "cl": "0x0008"
    }
  ]
}

Response fields

Note

The device returns the full DDF for the device.

Possible errors

403 Forbidden

404 Not Found


Reload Device DDF 

PUT /api/<apikey>/devices/<device_mac_address>/ddf/reload

Reload the DDF for the specified device MAC address. This might be required if you made some changes.

Important

The device MAC address in the request URL must be provided with colons!

Parameters

None

Response


HTTP/1.1 200 OK


[ { "success": { "reload": "60:a4:23:ff:ba:f0:47:22" } } ]

Response fields

FieldTypeDescription
reload String The MAC address for which the DDF has been reloaded.

Possible errors

403 Forbidden

404 Not Found


Get Device Resource Item Introspection 

GET /api/<apikey>/devices/<uniqueid>/<prefix>/<item>/introspect

Get the data type of the respective resource item as well as its defined values/boundaries or other relevant data.

Note

Prefix encompasses config, state and attr. Item resents the typical and known resource items.

Parameters

None

Response


HTTP/1.1 200 OK


{
  "maxval": 100,
  "minval": 0,
  "type": "uint8"
}

Response fields

FieldTypeDescription
maxval Number The defined maximum numeric value.
maxval Number The defined minimum numeric value.
type String The defined data type of the resource item.
buttons Object Contains the button and the respective function.
values Object Contains e.g. the `buttonevent` value, a short description and the generating button.

Possible errors

403 Forbidden

404 Not Found


Pair with install code 

PUT /api/<apikey>/devices/<device_mac_address>/installcode

Pair a device by using zigbee install code.

Important

The device MAC address in the request URL must be provided without colons!

Parameters

FieldTypeDescriptionRequired
installcode String

6, 8, 12 or 16 Byte device installation code, plus 2 Byte CRC.

This is an example of a 16 Byte code + 2 Byte CRC: 83FE D340 7A93 9723 A5C6 39B2 6916 D505 C3B5

required

Example request data

{
  "installcode": "83FED3407A939723A5C639B26916D505C3B5"
}

Response


HTTP/1.1 200 OK


    {
      "success": {
        "installcode": "83FED3407A939723A5C639B26916D505C3B5",
        "mmohash": "66B6900981E1EE3CA4206B6B861C02BB"
      }
    }

Response fields

FieldTypeDescription
installcode String The device install code provided in the request.
mmohash String

The Matyas-Meyer-Oseas (MMO) hash calculated based on the provided installation code.

It is automatically used by deCONZ to enable pairing with the target device.

Possible errors

400 Bad Request

403 Forbidden