19-07-21 09:48 AM
19-07-21 02:09 PM
19-07-21 02:23 PM
Hi Navitha
JSON is a string so you can directly use replace to replace the xyz with your new value.
Or you can extend the Utility - JSON VBO to convert the json string into a Dictionary and change the value, after which you can serialize and return the output.
Dim values = JsonConvert.DeserializeObject(json)
values(key) = newVal
op = JsonConvert.SerializeObject(values, Formatting.None)
19-07-21 03:07 PM
19-07-21 03:24 PM