Extracting Fields from JSON

Hi @yashnegi108

Read the JSON file & store it in a string. Convert the string to Json Object using Deserialize JSON activity, save the object in jsonObject variable.

Then you can easily obtain the data ike this:

authNo = jsonObject(“Auth no”).ToString
admitDate = jsonObject(“Admit date”).ToString
servicingFacilityName = jsonObject(“Servicing Facility Name”).ToString
authStartDate = jsonObject(“Auth Start Date”).ToString
authEndDate = jsonObject(“Auth End date”).ToString
status = jsonObject(“Status”).ToString

Hope this helps,
Best Regards.