Yup, can show you - when you set it up you can use compose to show what you are referencing at each step, so I added a few compose in here - first one shows the body itself, the second the d subproperty (like navigating into its child objects), third shows the results subproperty inside the d property - and we can see inside that there's a bunch of other properties we can reference (these are the properties of the individual results/version we are looking up)

Here we can see from one of the flow runs that the json structure was initially three layered d>results>OtherProperties

The reason I could use compose was that there were no versions of this file, it was only the original version, once I edit it and versions are available (I am going to assume you have enabled version history for this list or that it is on by default for your tenant), then I need to use the 'apply to each', as I will receive multiple results from 'Send an http request to SharePoint' which are compiled into the d>results> subproperty,
Make sure to type out your code instead of CopyPaste from the blog for these expressions, as the website will encode those as a different thing than the singlequote ' that you have on your keyboard:


I am going to try get the SingleLineOfText1 field for each version (this is where your would use your 'UserComments' field):

Now I can see from the flow run that this was successful and on the second iteration it had both the current and previous values added:

The first value was Purring, but the second version had no change for this property, so it also added Purring because for that version, that is what it was.
If I use another field that did change between versions, like SingleLineOfText2:

This means you can now set this to a variable once you've returned the string it to Power Apps, so you should then be able to use that to display the version history item wherever you need 🙂
I took out the compose actions as these were not needed, only used them for debugging to show you the structure of the SharePoint API call 🙂



Cheers,
Sancho