Hi! I am making a request to an API and JSON is coming as follows: SET %httprequest = ##class(%Net.HttpRequest).%New() DO %httprequest.Get(URL) SET %responseBody = %httprequest.HttpResponse.Data.Read()   W %responseBody {produto:"CHP0001",Local:{IDMV: "000000001",LOTE: "",DtFabric: "null",DtVenc: "null",Atributo06: "0000000002",Atributo07: "",QtdeDisp: "10.00000",QtdeAloc: "0.00000",QtdeSep: "0.00000",QtdeTotal: "10.00000",Status: "OK",Motivo: ""}} ZW %responseBody %responseBody="{produto:""CHP0001"",Local:{IDMV: ""000000001"",LOTE: """",DtFabric: ""null"",DtVenc: ""null"",Atributo06: ""0000000002"",Atributo07: """",QtdeDisp: ""10.00000"",QtdeAloc: ""0.00000"",QtdeSep: ""0.00000"",QtdeTotal: ""10.00000"",Status: ""OK"",Motivo: """"}}" and I'm trying to create a dynamic object: SET obj = ##class(%DynamicAbstractObject).%FromJSON(%responseBody) but an error happens:
<THROW>%FromJSON+37^%Library.DynamicAbstractObject.1 *%Exception.General Parsing error 3 Line 1 Offset 2

I tried to include double quotes in the keys using $ TR, I even tried to use charset, but without success!I tried to include double quotes in the keys using $ TR, I even tried to use charset, but without success!
can anybody help me? ![sad](https://community.intersystems.com/sites/all/libraries/ckeditor/plugins/smiley/images/sad_smile.png "sad")