I am currently using a Python script to handle much of my home automation. However, I am now able to do much of what I have been doing in Python right in the Home Automation interface. That being the case, I no longer need access to the /ZWaveAPI/Data/ tree. I am still using the Python script to interface with a GUI interface (several things going on here, not just ZWave stuff) and think it might be easier (and cleaner) to use the ZAutomation tree instead. Right now, http://127.0.0.1:8083/ZWaveAPI/Data/0 gives me the entire tree and if I substitute a timestamp for the zero, I get everything since the timestamp. I know that the command http://192.168.0.220:8083/ZAutomation/a ... way_7-0-98 will return a JSON string for the device listed but as of yet I've found no way to pull the entire tree with or without a timestamp. Can this be done?
Mike
Update - With a LOT of help from the development crew, I got it working the way I wanted again. The command http://192.168.0.220:8083/ZAutomation/a ... es?since=0 will give you the complete tree. Substituting a valid timestamp for the 0 will give you the changes since the timestamp. The devices tree appears to be a list within the key and I am accessing it (in Python) as such.