Hi @Goku ,
Use Deserialize JSON activity. It will give you an out put of type JsonObject. Lets us say you store the JsonObject to a variable jsonObject. Now you can get values from the JsonObject
See more at
Add an “HTTP Request” activity to call the API and store the JSON response in a variable . (let’s call it jsonResponse ).
Add a “Deserialize JSON” activity after the “HTTP Request” activity.
Create a variable to store the deserialized JSON data (let’s call it weatherData ) and set it as the “Output” property of the “Deserialize JSON” activity.
Assign (temperature = weatherData(“main”)(“temp”).ToString())
try with this expression once after deserializing JSON file
lets take like the output variable of Deserializa JSON activity as out_json
–now in a write line activity mention as out_json(“main”)(“temp”)(0).tostring