I had been using this curl command to get my list of devices:
curl -X PUT -H "Content-Type:application/json;charset=utf-8" -d "{}" http://192.168.1.10:1178/zwave/devices
Recently I updated my InControl app to version 3.48.5074.20109, and I believe after this update this curl command stopped working (although I'm not 100% sure it's related).
My other curl commands still work, for example this works fine:
curl -X PUT -H "Content-Type:application/json;charset=utf-8" -d "{}" http://192.168.1.10:1178/zwave/getScenes
When I try the "devices" command though, I just get this output (with the style tag truncated for brevity):
curl -X PUT -H "Content-Type:application/json;charset=utf-8" -d "{}" http://192.168.1.10:1178/zwave/devices
Service
Method not allowed.
I've been using this api reference to know these calls: http://developer.incontrolha.com/json-api.aspx
Thanks for any guidance anybody has!