My use case is RPA receives input values through API to start the job process. One of the argument field ‘ApprovalFlow’ has the value with the below format (it seems to be dictionary within List). I need to write a logic to extract the details of each dictionary value, could some one assist? Thank you very much in advance.
If you read this JSon, you can get the count of objects in ApprovalFlow
Loop through the members present in the approvalflow, now irrespective of 2 members or 4 or any number it should be able to read it and store all of it in a temp DataTable or a String type of variable with some separators.
That is an array of JObjects. Arrays are denoted by [ and ]
In your example, the two elements of the array are JObjects with Authority and UserName properties.
In order to give you exact code to get these values out, we’ll need to see the entire JSON data. Save it to a text file and put attach that file to your reply. But in general, you’d…