खाता लेबल

एक खाता लेबल बनाएं

function createAccountLabels(labelName) {   AdsManagerApp.createAccountLabel(labelName);   console.log("Label with text = '%s' created.", labelName); }

अनेक खातों पर एक खाता लेबल लागू करें

function applyAccountLabels(accountId1, accountId2, labelName) {   // You can modify this function to accept an array of IDs directly as well.   const accountIds = [accountId1, accountId2];    const accounts = AdsManagerApp.accounts().withIds(accountIds).get();   for (const account of accounts) {     account.applyLabel(labelName);      console.log('Label with text = "%s" applied to customer id %s.',                labelName, account.getCustomerId());   } }

अनेक खातों से कोई खाता लेबल निकालें

function removeLabelFromAccounts(accountId1, accountId2, labelName) {   const accountIds = [accountId1, accountId2];    var accounts = AdsManagerApp.accounts().withIds(accountIds).get();   for (const account of accounts) {     account.removeLabel(labelName);      console.log('Label with text = "%s" removed from customer id %s.',                labelName, account.getCustomerId());   } }

लेबल नाम के आधार पर एक खाता चुनें

function selectAccountsByLabelName(labelName) {   const accountIterator = AdsManagerApp.accounts()       .withCondition(`LabelNames CONTAINS '${labelName}'`)       .get();    for (const account of accountIterator) {     const accountName = account.getName() ? account.getName() : '--';     console.log('%s,%s,%s,%s', account.getCustomerId(), accountName,         account.getTimeZone(), account.getCurrencyCode());   } }

लेबल आईडी के आधार पर एक खाता चुनें

function selectAccountsByLabelId(labelId) {   const label = AdsManagerApp.accountLabels().withIds([labelId]).get().next();   const accountIterator = label.accounts().get();    for (const account of accountIterator) {     const accountName = account.getName() ? account.getName() : '--';     console.log('%s,%s,%s,%s', account.getCustomerId(), accountName,         account.getTimeZone(), account.getCurrencyCode());   } }

सभी खाता लेबल फिर से पाएं

function getAllAccountLabels() {   const labelIterator = AdsManagerApp.accountLabels().get();   for (const label of labelIterator) {     console.log('Label with id = %s and text = %s was found.',                label.getId().toFixed(0), label.getName());   } }

किसी खाता लेबल को उसके नाम के आधार पर फिर से पाएं

function getLabelByName(labelName) {   const labelIterator = AdsManagerApp.accountLabels()       .withCondition(`label.name CONTAINS '${labelName}'`)       .get();    for (const label of labelIterator) {     console.log(`Label with id = ${label.getId().toFixed(0)} ` +         `and text = ${label.getName()} was found.`);   } }

खाता लेबल को उनकी आईडी के आधार पर फिर से पाएं

function getLabelById(labelId) {   const labelIterator = AdsManagerApp.accountLabels()       .withIds([labelId])       .get();    for (const label of labelIterator) {     console.log("Label with id = %s and text = '%s' was found.",                label.getId().toFixed(0), label.getName());   } }