A JSON response from a device is as follows:
{
"Order": ""3"",
"ID": ""SHEET"",
"Name": ""Time Sheet"",
"ConID": ""!s?d2SzxcSDW1cf$*@4812sC#""
}
The property values in the JSON are enclosed in double quotes, causing them to be incorrect.
Is there a method to correctly parse or reformat this response into a valid object?
I attempted to replace ""
with "\"
but I am uncertain if it worked accurately.