Payload Example Environment Monitoring

Payload Device Water Level

To ensure the Antares Insight service works properly, make sure the payload sent by the user device is in accordance with the format that has been determined in Antares Insight. The following is an example of a payload on an Antares device that is in accordance with Antares Insight requirements based on decoder type:

1. Example Payload Input

Here is an example of the payload before passing through the Antares Insight decoder

{
  "counter": "7746",
  "sensor": {
    "air_temperature": "22.56",
    "air_humidity": "53.89"
  },
  "config": {
    "interval": "60"
  }
}

2. Decoded Payload Output

Here is an example of the payload after passing through the Antares Insight decoder.

{
  "temperature": 22.56,
  "humidity": 53.89,
  "heatIndex": 24.88,
  "dewPoint": 12.75,
  "absoluteHum": 10.8,
  "saturationVap": 27.35,
  "counter": 7746,
  "interval": 60
}

Last updated