Skip to main content

Configure Points

Not every point that is discovered needs to push data to Facilio. Configure points command is used to select only the points for which the data should be pushed. For protocols that do not support discovery of points, configuring points means just adding points. The command just passes all the parameters about points and gets back all the configured points as response.

Command#

{  "agent": "agent-name",  "controllerType": 1,  "msgid": 1720,  "command": 255,  "controller": {    "name": "controller-name-1"  },  "points": [    {      "name": "point-name-1"    },    {      "name": "point-name-2"    }  ],  "timestamp": 1598440113417}

Agent Response#

{  "controller": {    "name": "controller-name-1"  },  "agent": "rmzbangalore",  "data": [    {      "point-name-1": true,      "point-name-2": true    }  ],  "publishType": 1,  "controllerType": 0}