I am using GetDynamicValueProperties activity to parse JSON data in 2013 workflows in visual studio. I can access the title field by using “d/results(0)/Title”. But now I want to use variable instead of 0 at index. Can anyone help on this?
Hey Nikhil… I’m working in Visual Studio 2015 and SharePoint Online myself.
I ran into the same problem… I believe you can use workflow variables in the GetDynamicValueProperty activity. I chose a slightly different route of using REST to retrieve a single item instead of many results. In my case, I’m trying to get the Guid of a pre-existing list so I can use the LookupSPListItem to retrieve some index data…
So, instead of querying for many results, I’m retrieving the individual result that I need and grabbing that.