Deserialize JSON Data

I can use the SelectToken for the value of the particular key
Here is my json:
{
“Date”:“23/3/19”,
“A.B.C”:“abc”,
“(a.b.c) .a .b”:“123dsa”
}

I am not able to use selectToken function for “A.B.C” and “(a.b.c) .a .b” key

how I can resolve it ?

@Aarti_Godhasara1
check that the UiPAth.WebApi.Activities is referenced in your project

  • Use deserialize JSON Acitivity by passing the JSON as text (e.g. from a read text file Activity output)
    Output: e.g VariableName myJObject

give a try on myJObject("“A.B.C”).toString

Find starter help here:
AccessValue.xaml (4.9 KB)

2 Likes