HTTP Server
Permissions
Commissioning File Specifics
Sending data to the HTTP Server
JSON
// Original message sent to HTTP server
{
"machineState": "okay",
"temperature": 23,
"logs": [
"message1",
"message2"
]
}
// Resulting protocol-mapper output at the MQTT broker
{
"timestamp": 12391238123, // milliseconds since epoch
"value": {
"machineState": "okay",
"temperature": 23,
"logs": [
"message1",
"message2"
]
}
}Other Formats
Receiving data from the HTTP Server
JSON
Sample Commissioning File
Last updated
Was this helpful?

