Deserializon

i want to get the all the values from below

{
“$id”: “1”,
“DataFileId”: 34,
“ExternalFileId”: “24260”,
“FileDescription”: “deed”,
“Documents”: [
{
“$id”: “2”,
“DocumentId”: 50,
“DocumentName”: “deed”,
“DataFileId”: 34,
“QaDataFile”: {
“$ref”: “1”
},
“DocumentPath”: “E:/EFFECTIVE DATE08_09_2019_02_16_34.jpeg”,
“DocumentFields”: [
{
“$id”: “3”,
“DataFieldId”: 21,
“FieldName”: “Grantor”,
“FoundValue”: “Robert”,
“DocumentId”: 50,
“QaDataDocument”: {
“$ref”: “2”
},
“FieldImagePath”: “E:/EFFECTIVE DATE08_09_2019_02_16_34.jpeg”,
“FieldDocumentPageIndex”: null,
“EditedValue”: “Robert”
}
]
}
]
}

1 Like

Hi @veera_g

you can this component as your reference.
https://go.uipath.com/component/essilor-read-json-file

cheers :smiley:

Happy learning :smiley:

4 Likes

this is not a json file is it text file am getting this a string file

1 Like

Hi @veera_g

But the subject is desirialize. Fine by the way what excatly do you want to do. Kindly elaborate more to easily address the issue Thanks :smiley:

cheers :smiley:

Happy learning :smiley:

4 Likes

i want to get this filed only

1 Like

Hi @veera_g
As i can see your getting a payload right ? that was a json file ! if that the case you need to desirialize and read it as an object.Make sense!

cheers :smiley:

Happy learning :smiley:

5 Likes

Hello @veera_g

You can use regex here with this pattern
(?<=“FieldImagePath”: ).+ this will get you this value after the Colon

2 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.