Selector selector = new Selector();
selector.setFields(new String[] {"Id", "AdGroupAdDisapprovalReasons"});
selector.setOrdering(new OrderBy[] {new OrderBy("Id", SortOrder.ASCENDING)});
// Create predicates.
Predicate adGroupIdPredicate =
new Predicate("AdGroupId", PredicateOperator.IN, new String[] {adGroupId.toString()});
Predicate approvalStatusPredicate = new Predicate(
"AdGroupCreativeApprovalStatus", PredicateOperator.IN, new String[] {"DISAPPROVED"});
selector.setPredicates(new Predicate[] {adGroupIdPredicate, approvalStatusPredicate});
// Get all disapproved ads.
AdGroupAdPage page = adGroupAdService.get(selector);