I have data arriving from IoT device in the form of JSON. Inside this JSON I have another JSON for the co-ordinate in the form of
{“var1”:var1, “var2”:var2, “geolocation”: {“latitude”:lat, “longitude”:long}, “var3”:var3 }
I need to route this data using advanced Webhook. I could route the var1 var2 var3 in the format of
“var1_server”: <<decdata. var1 >>,“var2_server”: <<decdata. var2 >>,“var3_server”: <<decdata. var3 >>
I don’t know how to route the nested JSON corresponding to the co-ordinate ?
Also I need to use PUT instead of POST to route the data.
Regards,