Combining report URLs

Combine data URLs to use the results of one data URL as parameters for another data URL. You can also use the setting:format=json report path to output the report content in JSON format.

About this task

You can combine data URLs to return information that will produce multi-layered reports.

To join data URLs, precede the initial path with the path name of the data that you want to include in your final results followed by a pipe "|".

Example

asset:shortcut=fGroup%2Cm4_service_development returns assets in the M4 Service development community.

If you want to output only the download activities in the report, type assetActivity:tid=610| before the asset report path:

assetActivity:tid=610|asset:shortcut=fGroup%2Cm4_service_development

If you want to output only the user information for the users who downloaded the assets in this community, prepend user| before the assetActivity report path:

user|assetActivity:tid=610|asset:shortcut=fGroup%2Cm4_service_development

The resulting URL resembles the following:

http://example.com:9080/ram.ws/reporting/user|assetActivity:tid=610|asset:filters=fGroup%2Cm4_service_development

Prepend all other report paths with setting:format=json| to output the results in JSON format, rather than XML. The resulting URL for the same report output in JSON format resembles the following:

http://example.com:9080/ram.ws/reporting/setting:format=json|user|assetActivity:tid=610|asset:filters=fGroup%2Cm4_service_development

Feedback