Get individual item from Json string

Hi @Athul_AK

you can use the following assign activities:

• To get Date which is of data type string - jsonObjectData("Date").ToString

• To get Name which is again of datatype string - jsonObjectData.Item("Name").ToString

• To get id which is of type integer - CInt(jsonObjectData.Item("id"))

You can also use Deserialize JSON activity with Type Argument as Datatable. Supply a Datatable to the Output parameter of Json Deserialize

Check out the thread

Regards
Gokul