Expand my Community achievements bar.

Interested in becoming an Adobe Analytics Champion? Join us on May 15 at 9 am PT, and learn how to become a 2025 Adobe Champion.

Mark Solution

This conversation has been locked due to inactivity. Please create a new post.

SOLVED

Analytics API: how to filter report suites to only PROD?

Avatar

Level 2

I'm trying to use Analytics API function call: Company.GetReportSuites()? But I want to filter it to only have PROD? Is this possible?

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

you have two options in the API request, see here: GetReportSuites | Adobe Developer Connection

1) filter on "type", eg "standard" to filter out rollup RS

2) filter by "search", eg if all have "PROD" in the name

or you filter out the unwanted data from the response.

View solution in original post

1 Reply

Avatar

Correct answer by
Community Advisor

you have two options in the API request, see here: GetReportSuites | Adobe Developer Connection

1) filter on "type", eg "standard" to filter out rollup RS

2) filter by "search", eg if all have "PROD" in the name

or you filter out the unwanted data from the response.