Home > JSON Control Interface > Controlling with JSON

Controlling with JSON

The A2Z-Link can be controlled using JSON formatted data. This can be used to get status from devices as well as control devices.

The requests and posts are sent to the unit on port 80.

Some notes on this API:

* Parameters are not case sensitive
* most parameters accept "all" as an option to include all items, or if the parameter is not included "all" is assumed

 The following commands are available:

GET requests

 URL Description 
 /JSON?request=getstatus&ref=##&location1=LOC1&location2=LOC2 Returns the status of a device in the system or all the devices in the following format. The following parameters are supported in order to filter the response:

location1=loc1  (only return the devices that are in the specific location1, omit or set to "all" for all devices at this location)
location2=loc2  (only return the devices that are in the specific location2, omit or set to "all" for all devices at this location)
ref=##  (only return the device that matches the specific reference #, this may be a list of reference #'s like 3467,2342,869, omit or set to "all" to return all devices)

All GET requests are terminated with a CRLF.

If no JSON data is expected from the request, the return may be either "ok", or "error".

This response is for 2 devices, the first is a thermostat temperature, the second is a light switch:

    • {
      • "Name":"HomeSeer Devices",
      • "Version":"1.0",
      • "Devices":[
        1. {
          • "ref":3398,
          • "name":"Temperature",
          • "location":"Z-Wave",
          • "location2":"Node 122",
          • "value":82,
          • "status":"82 F",
          • "device_type_string":"Z-Wave Temperature",
          • "last_change":"\/Date(1410193983884)\/",
          • "relationship":4,
          • "hide_from_view":false,
          • "associated_devices":[
            1. 3397
            ]
            ,
          • "device_type":{
            • "Device_API":16,
            • "Device_API_Description":"Thermostat API",
            • "Device_Type":2,
            • "Device_Type_Description":"Thermostat Temperature",
            • "Device_SubType":1,
            • "Device_SubType_Description":"Temperature"
            },
          • "device_image":""
          },
        2. {
          • "ref":3570,
          • "name":"Switch Binary",
          • "location":"Z-Wave",
          • "location2":"Node 124",
          • "value":255,
          • "status":"On",
          • "device_type_string":"Z-Wave Switch Binary",
          • "last_change":"\/Date(1410196540597)\/",
          • "relationship":4,
          • "hide_from_view":false,
          • "associated_devices":[
            1. 3566
            ]
            ,
          • "device_type":{
            • "Device_API":4,
            • "Device_API_Description":"Plug-In API",
            • "Device_Type":0,
            • "Device_Type_Description":"Plug-In Type 0",
            • "Device_SubType":37,
            • "Device_SubType_Description":""
            },
          • "device_image":""
          }
        ]
      }
 
Where:

ref = unique device reference number, used for any subsequent requests such as device control, leave blank or set to "ALL" to get the status for all devices
name = the name of the device
location = the location of the device such as "kitchen"
location2 = the second location of the device such as "first floor"
value = the current value of the device, a double
status = the current string that represents the status of the device such as "on" or "off"
last_change = the date/time the device last changed status
relationship = 2:root device (other devices may be part of this physical device),3:standalone=this is the only device that represents this physical device,4:child=this device is part of a group of devices that represent this physical device
hide_from_view = true/false if true, this device has been set to not be visible in any user interface
device_type_string = The string the describes this device, set by plugin authors on their devices.
associated_devices = a list of device reference #'s that are associated with this device. If the device is a ROOT device, then the list is child devices, if the device is a child device, then the list will contain one device that is the root device.
device_type = Detailed information about the capabilities of the device, used mainly to determine if the device adheres to other API's such as thermostat, energy, etc. See the Devices section in the Scripting section in the HomeSeer HS3 user documentation for information about the properties in this section.

 /JSON?request=getcontrol&ref=## Returns control information for a device in the system, or all devices. Devices contain "control pairs", one pair for each possible control value. For example, a light that can be turned on and off would contain 2 control pairs, one for ON and one for OFF. The control pair describes how to control the device. The most important information is the "Label" and the "ControlValue", as those will be needed when the device is to be controlled. The information from this call can be used to build a user interface that will control the device.

Parameters:

ref=### (where ### is the device reference #, or "all" to return control information for all devices)

{
  • "ControlPairs":[
    1. {
      • "Do_Update":true,
      • "SingleRangeEntry":true,
      • "ControlButtonType":0,
      • "ControlButtonCustom":"",
      • "CCIndex":0,
      • "Range":null,
      • "Ref":2256,
      • "Label":"On Last Level",
      • "ControlType":5,
      • "ControlLocation":{
        • "Row":1,
        • "Column":3,
        • "ColumnSpan":0
        },
      • "ControlLoc_Row":1,
      • "ControlLoc_Column":3,
      • "ControlLoc_ColumnSpan":0,
      • "ControlUse":4,
      • "ControlValue":255,
      • "ControlString":"",
      • "ControlStringList":null,
      • "ControlStringSelected":null,
      • "ControlFlag":false
      },
    2. {
      • "Do_Update":true,
      • "SingleRangeEntry":true,
      • "ControlButtonType":0,
      • "ControlButtonCustom":"",
      • "CCIndex":1,
      • "Range":null,
      • "Ref":2256,
      • "Label":"On",
      • "ControlType":5,
      • "ControlLocation":{
        • "Row":1,
        • "Column":2,
        • "ColumnSpan":0
        },
      • "ControlLoc_Row":1,
      • "ControlLoc_Column":2,
      • "ControlLoc_ColumnSpan":0,
      • "ControlUse":1,
      • "ControlValue":99,
      • "ControlString":"",
      • "ControlStringList":null,
      • "ControlStringSelected":null,
      • "ControlFlag":false
      },
    3. {
      • "Do_Update":true,
      • "SingleRangeEntry":true,
      • "ControlButtonType":0,
      • "ControlButtonCustom":"",
      • "CCIndex":2,
      • "Range":null,
      • "Ref":2256,
      • "Label":"Off",
      • "ControlType":5,
      • "ControlLocation":{
        • "Row":1,
        • "Column":1,
        • "ColumnSpan":0
        },
      • "ControlLoc_Row":1,
      • "ControlLoc_Column":1,
      • "ControlLoc_ColumnSpan":0,
      • "ControlUse":2,
      • "ControlValue":0,
      • "ControlString":"",
      • "ControlStringList":null,
      • "ControlStringSelected":null,
      • "ControlFlag":false
      },
    4. {
      • "Do_Update":true,
      • "SingleRangeEntry":true,
      • "ControlButtonType":0,
      • "ControlButtonCustom":"",
      • "CCIndex":3,
      • "Range":{
        • "RangeStart":1,
        • "RangeEnd":98,
        • "RangeStatusDecimals":0,
        • "RangeStatusValueOffset":0,
        • "RangeStatusDivisor":0,
        • "ScaleReplace":"",
        • "HasScale":false,
        • "RangeStatusPrefix":"Dim ",
        • "RangeStatusSuffix":"%"
        },
      • "Ref":2256,
      • "Label":"Dim (value)%",
      • "ControlType":7,
      • "ControlLocation":{
        • "Row":2,
        • "Column":1,
        • "ColumnSpan":3
        },
      • "ControlLoc_Row":2,
      • "ControlLoc_Column":1,
      • "ControlLoc_ColumnSpan":3,
      • "ControlUse":3,
      • "ControlValue":1,
      • "ControlString":"",
      • "ControlStringList":null,
      • "ControlStringSelected":null,
      • "ControlFlag":false
      }
    ]
    ,
  • "ref":2256,
  • "name":"light",
  • "location":"Office",
  • "location2":"First Floor"
}

Where:

Label = The label to display on this control, if its a button, it would be the button label like "On" or "Off"
ControlType = Specifies the control type for this control, possible values are:

Not_Specified = 1
        Values = 2                          'This is the default to use if one of the others is not specified.
        Single_Text_from_List = 3
        List_Text_from_List = 4
        Button = 5
        ValuesRange = 6                 'Rendered as a drop-list by default.
        ValuesRangeSlider = 7
        TextList = 8
        TextBox_Number = 9
        TextBox_String = 10
        Radio_Option = 11
        Button_Script = 12      ' Rendered as a button, executes a script when activated.
        Color_Picker = 13
ControlLocation = Specifies the desired location of the control using row/column
ControlUse = If the pair is to control a specifc function, such as On/Off/Dim, this specifies this function. This makes it easier to control basic devices without knowing the label. For example, some devices may use "On" for On, and others may use "Bright Full" for on. By checking this property it is easy to find the control element for common controls. The possible values are:

    Not_Specified = 0
    _On = 1
    _Off = 2
    _Dim = 3
    _On_Alternate = 4
    _Play = 5               ' media control devices
    _Pause = 6
    _Stop = 7
    _Forward = 8
    _Rewind = 9
    _Repeat = 10
    _Shuffle = 11

ControlValue = The value for this pair, use when controlling the device.

Range = Specifies the range of this pair. This is used for pairs that represent multiple values, such as the dim level of a light. A light may specifiy a range of 1-99 for the dim levels. The range also specifies the label using RangeStatusPrefix (such as "Dim"), and RangeStatusSuffix (such as "%"). The formatted status of the device will then be formatted as "Dim ## %".


 /JSON?request=controldevicebyvalue&ref=###&value=# Control a device given the device's reference number "ref", and value "value". For example, if a light has a value of 0 for off, the following would turn off the device with reference # 3570:

/JSON?request=controldevicebyvalue&ref=3570&value=0

The return is the current JSON formatted status of the device (same return as "getstatus"), or the string "error".
 /JSON?request=controldevicebylabel&ref=###&label=label Control a device by label, this is the label as returned by the "getcontrol" parameter. For example, if the device has a label "On" to turn a device on, the following URL would turn it on:

/JSON?request=controldevicebylabel&ref=3570&label=On

The return is the current JSON formatted status of the device (same return as "getstatus"), or the string "error".
 /JSON?request=getevents Returns the names of all events in the system. An event is an action to be performed such as controlling a light, a sequence of lights, a thermostat, etc. Events have two properties, a group name and an event name. This command returns the group name and event name for all events. These two pieces of information are used to control an event.

Example:

{
  • "Name":"HomeSeer Events",
  • "Version":"1.0",
  • "Events":[
    1. {
      • "Group":"Lighting",
      • "Name":"Outside Lights Off"
      }, (MORE EVENTS FOLLOW)
 /JSON?request=runevent&group=GROUPNAME&name=EVENTNAME This command will execute the actions of an event. Pass the group name and event name. The group and name are not case sensitive.

Note: Only available if A2Z-Link is enabled for automation.
 /JSON?request=speak&phrase=text&host=HOST:NAME Speaks the given phrase using text-to-speech.

phrase = the phrase to speak
host = the speaker host to speak out of. HomeSeer supports multiple hosts, like PC's and mobile devices. Each device is assgined a unique host:name ID. For example, a host on the PC named "hometroller" with the name "Android" would have the host name: HomeTroller:Android. If this is added to the host parameter, then the phrase will be spoken out that host only. Many hosts can be added and are separated by a comma, IE: host=HomeTroller:Android,iPhone:bill

Note: Only available if A2Z-Link is enabled for automation.
 /JSON?request=getlocations  Returns all the location names for location 1 and location 2
 /JSON?request=getcounter&counter=NAME  Returns the value for the given named counter
/JSON?request=getsetting&setting=SETTING_NAME Returns the value for a specific settting. For example, the setting for the name of location 1 is called "gLocLabel". To get the name of this label use:

/JSON?request=getsetting&setting=gLocLabel

The return might be:

   {
  •   "Value":"Room"
  • }


POST requests

JSON post requests can be used to control devices. The following request will turn a device on using the device value. In this example, a value of 255 will turn this device on:

Post data: {'action' : 'controlbyvalue', 'deviceref' : '3570', 'value' : '255'}
Url: ip_address/JSON

To control a device by label. In this case the label "On" will turn the device on:

Post data: {'action' : 'controlbylabel', 'deviceref' : '3570', 'label' : 'on'}

To run the actions of an event:

Post data: {'action' : 'runevent', 'group' : 'GROUPNAME', 'name' : 'EVENTNAME'}


See also