Any idea what could be wrong with this JSON string?
"\"iccid\":\"8500000000000000005\",\"msisdn\":\"4485000000005\",\"comment\":null,\"lastSessionStart\":1480120318000,\"lastSessionEnd\":1480120456000,\"simStatus\":\"Live\",\"activated\":true,\"enabled\":true,\"connected\":false,\"usage\":73728}"
I tried unescaping it by:
json = json.Replace("\\\"", "");
but I'm still getting this error:
Unexpected character encountered while parsing value: 1. Path 'lastSessionStart', line 1, position 91.
JSONLint.com says it's a valid JSON format.