Skip to content

Latest commit

 

History

History
90 lines (76 loc) · 1.47 KB

File metadata and controls

90 lines (76 loc) · 1.47 KB

/api/view/registeroffsets/{hardware_id}

← Back to Index

Methods: GET
Status Codes: 200

Table of Contents

General

{
  "type": "object",
  "properties": {
    "key": {
      "type": "string"
    },
    "lastChanged": {
      "type": "string"
    },
    "registerOffsets": {
      "type": "object",
      "properties": {
        "index": {
          "type": "number"
        },
        "name": {
          "type": "string"
        },
        "registerAddress": {
          "type": "number"
        },
        "registerModbusName": {
          "type": "string"
        },
        "value": {
          "type": "number"
        }
      }
    }
  }
}

Return to top

Example

Request:

GET /api/view/registeroffsets/H511568?lastChanged=2025-12-22T17:51:15Z
Accept: application/json
ae_s: *WPOMs1+UDquA3lmqjIlKm9mGjr7uixpBspy0HA==
ae_v: c75711
referer: https://apps.alsoenergy.com/powertrack/H511568/administration/config

Response:

{
  "key": "H511568",
  "lastChanged": "2025-12-22T19:21:53Z",
  "registerOffsets": [
    {
      "index": 0,
      "name": "",
      "registerAddress": 9000,
      "registerModbusName": "Active Energy Net Raw",
      "value": 0
    },
    {
      "index": 1,
      "name": "KWHoffset",
      "registerAddress": 30531,
      "registerModbusName": "Active Energy Net",
      "value": 0
    }
  ]
}

Return to top