How to retrieve youtube campaign's criterions?
I use this service "CampaignCriterionServiceInterface" to retrieve all criterions of an account for youtube promotion.
Here are my parameters:
Selector fields: "Id", "CampaignId", "BidModifier","LanguageCode","LocationName","ParentLocations","DisplayType","PlatformName","UserListId",
"UserListName","UserListMembershipStatus","UserListEligibleForSearch","UserListEligibleForDisplay","CampaignCriterionStatus","DayOfWeek","StartHour","StartMinute",
"EndHour","EndMinute"
Predicate criterions = new Predicate("CriteriaType",PredicateOperator.IN,new String[]{"LANGUAGE","LOCATION","PLATFORM","USER_LIST","AD_SCHEDULE"});
Predicate criterionStatus = new Predicate("CampaignCriterionStatus",PredicateOperator.IN,new String[]{"ACTIVE","PAUSED"});
Should i add "youtube channel" or "youtube video" type in predications?
Thank you for helping me solving this issue~