How do I get wiki page detail from TaggedContent.List results?

I'm using this code to run a query on wiki pages searching by tag and I need to be able to get into the actual detailed content/properties of each of the wiki page result but can't seem to find/get the id's I need for the wikiPage.Get() function.

#set ($query = "%{Tags='my_tags'}")
$query.Add('ContainerIds', $groupGuid)
$query.Add('IncludeSubContainers', true)
$query.Add('ApplicationTypeIds', $wikiApplicationTypeId)
#set ($response = $core_v2_taggedContent.List($query))

Looks like I need a contentId for this to work, but playing around in the sandbox, non of the contentId values returned in the TaggedContent.List() call return anything.

#set($w = $core_v2_wikiPage.Get($contentIdGuidHere))
$w

Parents Reply Children