# Payload Example Power Meter

**Payload Device Power Meter**

Untuk memastikan layanan Antares Insight berfungsi dengan baik, pastikan payload yang dikirimkan oleh device user sesuai dengan format yang sudah ditentukan pada Antares Insight.

<figure><img src="https://3995702122-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FrRkxjRLeqOm0pNhLfsus%2Fuploads%2FgxSk3n9kuD771JyXT7wb%2Fimage.png?alt=media&#x26;token=1da4dc39-60d9-4029-b91e-7de6d6ac547e" alt=""><figcaption><p>Format Payload Antares</p></figcaption></figure>

Berikut contoh payload pada device Antares yang sudah sesuai dengan ketentuan Antares Insight berdasarkan **decoder type** :&#x20;

{% tabs %}
{% tab title="Scheneider Power Meter " %}

## 1. Example Payload Input

Berikut adalah contoh payload sebelum melewati decoder Antares Insight.

```
{
  "Ia": "1.265",
  "Ib": "2.891",
  "Ic": "2.828",
  "vll": "378.163",
  "vab": "378.163",
  "vbc": "374.163",
  "vca": "383.158",
  "vln": "218.159",
  "va": "219.041",
  "vb": "214.496",
  "vc": "222.749",
  "pf": "0.789",
  "kW": "1.212",
  "kVA": "1.523",
  "kWh": "5970459",
  "kVAh": "6716964",
  "freq": "50.145"
}
```

## 2. Decoded Payload Output

Berikut adalah contoh payload setelah melewati decoder Antares Insight.

```
{
  "currentR": 1.265,
  "currentS": 2.891,
  "currentT": 2.828,
  "voltageLineToLine": 378.163,
  "voltageRS": 378.163,
  "voltageST": 374.163,
  "voltageRT": 383.158,
  "voltageLineToNeutral": 218.159,
  "voltageRN": 219.041,
  "voltageSN": 214.496,
  "voltageTN": 222.749,
  "activePower": 1.212,
  "apparentPower": 1.523,
  "reactivePower": 0.9357208383866418,
  "totalActivePower": 5970459,
  "totalReactivePower": 6716964,
  "powerFactor": 0.789,
  "frequency": 50.145
}
```

{% endtab %}
{% endtabs %}
