Hi Everyone,
receiving this error while copying Json data in deserializing json -
Syntax error
Replace the " inside of the array for '
Hi,
Double quotes are used in expressions to start/end a string value, but in json you pasted, they are not escaped and you have an error.
Try escaping those double quotes in your json: "[ { "id": 2 ... -> "[ { \""id\"": 2 ...
edit: @Márcio Carvalho's answer above is the another option.