Update Meter Readings

You can monitor meter readings on a piece of equipment and collect the data by using an IoT device. You can then use the Update Meter Readings orchestration to process the meter readings from the IoT device. For example, you can use meter readings to determine whether to initiate maintenance tasks for a machine or equipment based on the accumulated statistical units.

This table includes information that the Update Meter Readings orchestration uses to process IoT data:

Application Invoked

Application Version

Endpoint URL

Speed Meter Readings (P12120U)

ZJDE0001

http://<server>:<host>/jderest/orchestrator/JDE_ORCH_13_UpdateMeterReadings

This is an example of an input message defined for the Update Meter Readings orchestration:

{
     "inputs": [
         {
            "name": "EquipmentNumber",
            "value": "34665"
         },
            "name": "OdometerNewReading",
            "value": "61"
         },
         {
            "name": "FuelMeterNewReading",
            "value": "10"
         },
         {
            "name": "HourMeterNewReading",
            "value": "94"
         },
         {
            "name": "Meter4NewReading",
            "value": "4"
         },
         {
            "name": "Meter5NewReading",
            "value": "6"
         },
         {
            "name": "Meter6NewReading",
            "value": "8"
         }
     ]
}