همه مکانها را در فهرست قرارگیری حذف شده دریافت کنید
function getPlacementsFromExcludedPlacementList(name) { const excludedPlacementListIterator = AdsApp.excludedPlacementLists() .withCondition(`shared_set.name = '${name}'`) .get(); if (!excludedPlacementListIterator.hasNext()) { throw new Error(`No excluded placement list with name '${name}' found.`); } const excludedPlacementList = excludedPlacementListIterator.next(); return excludedPlacementList.excludedPlacements().get(); }
یک مکان را به لیست قرارگیری حذف شده اضافه کنید
function addPlacementToList(url, name) { const excludedPlacementListIterator = AdsApp.excludedPlacementLists() .withCondition(`shared_set.name = '${name}'`) .get(); if (!excludedPlacementListIterator.hasNext()) { throw new Error(`No excluded placement list with name '${name}' found.`); } const excludedPlacementList = excludedPlacementListIterator.next(); excludedPlacementList.addExcludedPlacement(url); }