OriginalPostID-251745
Discussion posts and replies are publicly visible
You can do this by building a URL dynamically: fn!load( local!siteURL: rule!APN_getSiteUrl(), /*Get identifier of record*/ local!recordIdentifier: a!recordLink( recordType: <record type>, identifier: <record identifier> ).@attributes.@anyAttribute._recordRef, /*Build the site record url*/ local!finalSiteURL: fn!concat( local!siteURL, "sites/", <name of the site here>, "/page/", <name of the page here>, "/record/", local!recordIdentifier, "/view/", rule!APN_replaceNull( nullableValue: <dashboard >, replacementValue:"summary" ) ), /*Get the site record url*/ local!finalSiteURL )