From here, we want to pinpoint the text we are looking for via the “display value” of the specified column id (which is static). Any help would be greatly appreciated!
I did this already, but we need to perform additional operations in order to locate the display value. The example that I provided is a smart part in a string of over 2 million characters in which there are multiple “displayvalues” in the response but we are looking for one in particular (which is assigned to another variable which is called ROW ID). So I first saved the entire response to a variable, but I am unsure how to trim the data to look for the value that is stored in ROW ID
You can parse this like a json response itself. Try using the Deserialize Json activity.
Then you can play around with the JObject class methods to find your corresponding displayValue with a dynamic ID.
Here are some references :
I have done this earlier. But don’t remember exactly how I drilled down to specific values.