IoT Orchestrator Formating issue

furqan.shamsi

Member
Hello Everyone,


I am integrating JDE IoT orchestration with third party application. Third party application providing the following json format.
{
id="",
source="",
"payload": {
"format": "",
"data": {
"temperature": 28.25,
"EquipmentNumber": 34930.0,
"NewFuelMeterReading": 28.25,
"NewHourMeterReading": 28.25
}
}
}


On the other hand JDE IoT Orchestrator:


i use IoT Orchestration sample JDE_ORCH_Sample_UpdateMeterReadings_Generic which is on Generic Input Format.


JDE IoT Orchestrator accepts the following json format,
{

"EquipmentNumber": 34930.0,
"NewFuelMeterReading": 28.25,
"NewHourMeterReading": 28.25


}


Is there any way to format my json in this way in IoT Orchestrator or any other way around.


Thanks
 
Back
Top