> For the complete documentation index, see [llms.txt](https://docs.antares.id/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.antares.id/antares-insight-hub/usecase/environment-monitoring/payload-example-environment-monitoring.md).

# Payload Example Environment Monitoring

**Payload Device Water Level**

Untuk memastikan layanan Antares Insight berfungsi dengan baik, pastikan payload yang dikirimkan oleh device user sesuai dengan format yang sudah ditentukan pada Antares Insight. \
Berikut contoh payload pada device Antares yang sudah sesuai dengan ketentuan Antares Insight berdasarkan **decoder type** :&#x20;

<figure><img src="/files/IS9oJE2ppfeNWMeMgpBW" alt=""><figcaption></figcaption></figure>

{% tabs %}
{% tab title="First Tab" %}

## 1. Example Payload Input

Berikut adalah contoh payload sebelum melewati decoder Antares Insight

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

## 2. Decoded Payload Output

Berikut adalah contoh payload setelah melewati decoder Antares Insight.

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

{% endtab %}
{% endtabs %}
