Expand my Community achievements bar.

Announcement: Calling all learners and mentors! Applications are now open for the Adobe Analytics 2024 Mentorship Program! Come learn from the best to prepare for an official certification in Adobe Analytics.
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.