Using the HomeSeer Web Hook feature
HomeSeer allows you to enter a URL that it will send a HTTP post to whenever a device changes status. The post includes JSON formatted data.
Step-by-step guide
- In HomeSeer HS4 go to Setup then the Custom tab
- Look for the web hooks section and add a URL that you would like to post to.
The format of the post data is as follows:
JSON
{
"type": "devicechange",
"data": {
"ref": 7100,
"name": "Brightness",
"location": "Tuya",
"location2": "Plugin",
"value": 11,
"status": "11%",
"last_change": "/Date(1596138546712-0400)/"
}
}