{"id":25,"date":"2015-07-24T09:53:00","date_gmt":"2015-07-24T07:53:00","guid":{"rendered":""},"modified":"2017-01-06T13:57:28","modified_gmt":"2017-01-06T12:57:28","slug":"labels-in-accounts-mit-adwords-script-erstellen","status":"publish","type":"post","link":"https:\/\/www.dair-media.net\/blog\/labels-in-accounts-mit-adwords-script-erstellen\/","title":{"rendered":"Labels in Accounts mit AdWords Script erstellen"},"content":{"rendered":"<p>Beim Verwalten von AdWords Account sind <a href=\"https:\/\/support.google.com\/adwords\/answer\/2475865?hl=de\" target=\"_blank\" rel=\"nofollow\">Labels<\/a> ein sehr n\u00fctzliches Hilfsmittel, um elemente wie Kampagnen, Anzeigengruppen, Anzeigen oder Keywords zu markieren, diese zu filtern oder entsprechende Berichte und andere Aktionen an mit Labels markierten Elementen auszuf\u00fchren. Ein paar gute Beispiele f\u00fcr die Verwendung von Labels liefert Sascha Schmitz in seinem <a href=\"http:\/\/www.sea-sight.com\/adwords-labels\/\" target=\"_blank\" rel=\"\">Blog<\/a>.<\/p>\n<p>Meistens werden immer wieder die gleichen Labels verwendet. Wer nun anf\u00e4ngt, in einem neuen AdWords Account zu arbeiten, muss alle Labels neu erstellen. Je nach Anzahl der Labels wird dies schnell m\u00fchselig. Der neue AdWords Editor (ab Version 11.1.2) schafft etwas Erleichterung, denn hier k\u00f6nnen Labels zwischen den Accounts kopiert werden. Allerdings muss hier immer noch jedes Acocunt einzeln aufgemacht und die Labels dann eingef\u00fcgt werden. Schneller und flexibler funktioniert es mit einem <a href=\"https:\/\/developers.google.com\/adwords\/scripts\/?hl=de\" target=\"_blank\" rel=\"nofollow\">AdWords Script<\/a>.<\/p>\n<p>Der Script ist ganz einfach zu handhaben: Ihr definiert die Labels, also Namen, ggf. Farbe und Beschreibung, und l\u00e4sst den Script laufen. Dies funktioniert sowohl in einem Account als auch aus einem MCC heraus f\u00fcr mehrere verwaltete Account. In diesem Fall m\u00fcssen nur die IDs der betroffenen Accounts und die Option f\u00fcr MCC-Nutzung auf &#8218;true&#8216; gesetzt weden. Im Script-Code ist eine ausf\u00fchrliche Beschreibung nochmal enthalten.<\/p>\n<pre class=\"\">\/********************************************************************\r\n* Account and MCC AdWords Script 'Label Creator'\r\n* \r\n* @version: 1.1 - 2015-07-23\r\n* @author: Alexander Gut | DAIR-Media.net\r\n* \r\n* This Script creates set of labels for an AdWords Account.\r\n* \r\n* Define labels to create in the AdWords account and run the script.\r\n* Use JSON notation to define the labels array an use this notation:\r\n*\r\n* 'LABEL-NAME' : {'color': 'LABEL-COLOR', 'descr': 'LABEL-DESCRIPTION'}\r\n*\r\n* You can use these values:\r\n* \r\n* LABEL-NAME: The name of the new Label. Label names are case sensitive\r\n* and must be unique. Max length is 100 characters.\r\n*\r\n* LABEL-COLOR: (optional) The background color of the new label.\r\n* The color must be specified in either RGB form (#RRGGBB or #RGB),\r\n* or one of the 16 basic CSS color names:\r\n* http:\/\/www.w3.org\/TR\/css3-color\/#html4\r\n*\r\n* LABEL-DESCRIPTION: (optional) The description of the new label.\r\n* If not specified, the description will be empty. Max length is\r\n* 200 characters.\r\n* \r\n* Please note: array keys 'color' and 'descr' schould not be changed.\r\n* You can set default values for color and description for all labels.\r\n*\r\n*\r\n* CHANGELOG:\r\n* v1.1 - add optional MCC functionality to be able to create\r\n*        new lables in multiple managed accounts at the same time\r\n* v1.0 - initial release\r\n*\r\n********************************************************************\/\r\n\r\nvar LABELS = {\r\n   'watch': {'color': '#cc33cc'}, \r\n   'Brand': {'color': '#33cc00'},\r\n   'Non-Brand': {'color': '#00cccc'},\r\n   'deactivated': {'color': '#999999'},\r\n   'paused': {'color': '#c0c0c0'}\r\n   };\r\n\r\nvar LABELS_DEFAULT_COLOR = '';\r\nvar LABELS_DEFAULT_DESCR = '';\r\n\r\n\r\nvar USE_AS_MCC_SCRIPT = false;\r\nvar ACCOUNT_IDS = []; \/\/ array of strings with managed Account-IDs, e.g. ['111-111-1111', '222-222-2222']\r\n\r\nfunction main() {\r\n\r\n if (USE_AS_MCC_SCRIPT &amp;&amp; ACCOUNT_IDS.length &gt; 0){\r\n  var mccAccount = AdWordsApp.currentAccount();\r\n  var accountIterator = MccApp.accounts().withIds(ACCOUNT_IDS).get();\r\n\r\n  while (accountIterator.hasNext()) {\r\n   var account = accountIterator.next();\r\n   MccApp.select(account);\r\n   Logger.log('START processing account %s', account.getCustomerId());\r\n   createLabels();\r\n   Logger.log('DONE processing account %s', account.getCustomerId());\r\n  }\r\n }\r\n else {\r\n  createLabels();\r\n }\r\n \r\n}\r\n\r\nfunction createLabels(){\r\n for (var lbl in LABELS){\r\n  var newLabelName = lbl;\r\n  var newLabelColor = LABELS[lbl]['color'] || LABELS_DEFAULT_COLOR;\r\n  var newLabelDescr = LABELS[lbl]['descr'] || LABELS_DEFAULT_DESCR;\r\n  \r\n  \/\/ Try to get label first to prevent exception createing the same label name.\r\n  var labelIterator = AdWordsApp.labels().withCondition(\"Name = '\" + newLabelName + \"'\").get();\r\n  if(!labelIterator.hasNext()){\r\n   if (!AdWordsApp.getExecutionInfo().isPreview()) { \/\/ dont't really create label if script is in preview mode\r\n    AdWordsApp.createLabel(newLabelName, newLabelDescr, newLabelColor);\r\n   }\r\n   Logger.log(\"New Label '\" + newLabelName + \"' with color '\" + newLabelColor + \"' and description '\" + newLabelDescr + \"' have been created.\");\r\n  }\r\n  else{\r\n   Logger.log(\"Label '\" + newLabelName + \"' was already in account.\");\r\n  } \r\n }\r\n}<\/pre>\n<p>&nbsp;<\/p>\n<p>Fragen zu diesem AdWords Script oder Verbesserungsvorschl\u00e4ge? Einfach unsere <a href=\"https:\/\/www.dair-media.net\/adwords\/\" target=\"_blank\">AdWords Agentur<\/a> kontaktieren oder hier in Kommentaren posten. Wir freuen uns auf Feedback.<\/p>\n<div class=\"shariff shariff-align-left shariff-widget-align-left\"><div class=\"ShariffHeadline\">Hat Ihnen der Artikel gefallen? Teilen Sie ihn bitte.<\/div><ul class=\"shariff-buttons theme-color orientation-horizontal buttonsize-medium\"><li class=\"shariff-button facebook shariff-nocustomcolor\" style=\"background-color:#4273c8\"><a href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fwww.dair-media.net%2Fblog%2Flabels-in-accounts-mit-adwords-script-erstellen%2F\" title=\"Bei Facebook teilen\" aria-label=\"Bei Facebook teilen\" role=\"button\" rel=\"nofollow\" class=\"shariff-link\" style=\"; background-color:#3b5998; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 18 32\"><path fill=\"#3b5998\" d=\"M17.1 0.2v4.7h-2.8q-1.5 0-2.1 0.6t-0.5 1.9v3.4h5.2l-0.7 5.3h-4.5v13.6h-5.5v-13.6h-4.5v-5.3h4.5v-3.9q0-3.3 1.9-5.2t5-1.8q2.6 0 4.1 0.2z\"\/><\/svg><\/span><span class=\"shariff-text\">teilen<\/span>&nbsp;<\/a><\/li><li class=\"shariff-button twitter shariff-nocustomcolor\" style=\"background-color:#595959\"><a href=\"https:\/\/twitter.com\/share?url=https%3A%2F%2Fwww.dair-media.net%2Fblog%2Flabels-in-accounts-mit-adwords-script-erstellen%2F&text=Labels%20in%20Accounts%20mit%20AdWords%20Script%20erstellen&via=dair_media\" title=\"Bei X teilen\" aria-label=\"Bei X teilen\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#000; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 24 24\"><path fill=\"#000\" d=\"M14.258 10.152L23.176 0h-2.113l-7.747 8.813L7.133 0H0l9.352 13.328L0 23.973h2.113l8.176-9.309 6.531 9.309h7.133zm-2.895 3.293l-.949-1.328L2.875 1.56h3.246l6.086 8.523.945 1.328 7.91 11.078h-3.246zm0 0\"\/><\/svg><\/span><span class=\"shariff-text\">teilen<\/span>&nbsp;<\/a><\/li><li class=\"shariff-button xing shariff-nocustomcolor\" style=\"background-color:#29888a\"><a href=\"https:\/\/www.xing.com\/spi\/shares\/new?url=https%3A%2F%2Fwww.dair-media.net%2Fblog%2Flabels-in-accounts-mit-adwords-script-erstellen%2F\" title=\"Bei XING teilen\" aria-label=\"Bei XING teilen\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#126567; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 25 32\"><path fill=\"#126567\" d=\"M10.7 11.9q-0.2 0.3-4.6 8.2-0.5 0.8-1.2 0.8h-4.3q-0.4 0-0.5-0.3t0-0.6l4.5-8q0 0 0 0l-2.9-5q-0.2-0.4 0-0.7 0.2-0.3 0.5-0.3h4.3q0.7 0 1.2 0.8zM25.1 0.4q0.2 0.3 0 0.7l-9.4 16.7 6 11q0.2 0.4 0 0.6-0.2 0.3-0.6 0.3h-4.3q-0.7 0-1.2-0.8l-6-11.1q0.3-0.6 9.5-16.8 0.4-0.8 1.2-0.8h4.3q0.4 0 0.5 0.3z\"\/><\/svg><\/span><span class=\"shariff-text\">teilen<\/span>&nbsp;<\/a><\/li><li class=\"shariff-button linkedin shariff-nocustomcolor\" style=\"background-color:#1488bf\"><a href=\"https:\/\/www.linkedin.com\/sharing\/share-offsite\/?url=https%3A%2F%2Fwww.dair-media.net%2Fblog%2Flabels-in-accounts-mit-adwords-script-erstellen%2F\" title=\"Bei LinkedIn teilen\" aria-label=\"Bei LinkedIn teilen\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#0077b5; color:#fff\" target=\"_blank\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 27 32\"><path fill=\"#0077b5\" d=\"M6.2 11.2v17.7h-5.9v-17.7h5.9zM6.6 5.7q0 1.3-0.9 2.2t-2.4 0.9h0q-1.5 0-2.4-0.9t-0.9-2.2 0.9-2.2 2.4-0.9 2.4 0.9 0.9 2.2zM27.4 18.7v10.1h-5.9v-9.5q0-1.9-0.7-2.9t-2.3-1.1q-1.1 0-1.9 0.6t-1.2 1.5q-0.2 0.5-0.2 1.4v9.9h-5.9q0-7.1 0-11.6t0-5.3l0-0.9h5.9v2.6h0q0.4-0.6 0.7-1t1-0.9 1.6-0.8 2-0.3q3 0 4.9 2t1.9 6z\"\/><\/svg><\/span><span class=\"shariff-text\">teilen<\/span>&nbsp;<\/a><\/li><li class=\"shariff-button mailto shariff-nocustomcolor\" style=\"background-color:#a8a8a8\"><a href=\"mailto:?body=https%3A%2F%2Fwww.dair-media.net%2Fblog%2Flabels-in-accounts-mit-adwords-script-erstellen%2F&subject=Labels%20in%20Accounts%20mit%20AdWords%20Script%20erstellen\" title=\"Per E-Mail versenden\" aria-label=\"Per E-Mail versenden\" role=\"button\" rel=\"noopener nofollow\" class=\"shariff-link\" style=\"; background-color:#999; color:#fff\"><span class=\"shariff-icon\" style=\"\"><svg width=\"32px\" height=\"20px\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 32 32\"><path fill=\"#999\" d=\"M32 12.7v14.2q0 1.2-0.8 2t-2 0.9h-26.3q-1.2 0-2-0.9t-0.8-2v-14.2q0.8 0.9 1.8 1.6 6.5 4.4 8.9 6.1 1 0.8 1.6 1.2t1.7 0.9 2 0.4h0.1q0.9 0 2-0.4t1.7-0.9 1.6-1.2q3-2.2 8.9-6.1 1-0.7 1.8-1.6zM32 7.4q0 1.4-0.9 2.7t-2.2 2.2q-6.7 4.7-8.4 5.8-0.2 0.1-0.7 0.5t-1 0.7-0.9 0.6-1.1 0.5-0.9 0.2h-0.1q-0.4 0-0.9-0.2t-1.1-0.5-0.9-0.6-1-0.7-0.7-0.5q-1.6-1.1-4.7-3.2t-3.6-2.6q-1.1-0.7-2.1-2t-1-2.5q0-1.4 0.7-2.3t2.1-0.9h26.3q1.2 0 2 0.8t0.9 2z\"\/><\/svg><\/span><span class=\"shariff-text\">E-Mail<\/span>&nbsp;<\/a><\/li><\/ul><\/div>","protected":false},"excerpt":{"rendered":"<p>Beim Verwalten von AdWords Account sind Labels ein sehr n\u00fctzliches Hilfsmittel, um elemente wie Kampagnen, Anzeigengruppen, Anzeigen oder Keywords zu markieren, diese zu filtern oder entsprechende Berichte und andere Aktionen an mit Labels markierten Elementen auszuf\u00fchren. Ein paar gute Beispiele f\u00fcr die Verwendung von Labels liefert Sascha Schmitz in seinem Blog. Meistens werden immer wieder &#8230; <a title=\"Labels in Accounts mit AdWords Script erstellen\" class=\"read-more\" href=\"https:\/\/www.dair-media.net\/blog\/labels-in-accounts-mit-adwords-script-erstellen\/\" aria-label=\"Mehr Informationen \u00fcber Labels in Accounts mit AdWords Script erstellen\">Weiterlesen<\/a><\/p>\n","protected":false},"author":1,"featured_media":13,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[48,71],"tags":[5,18,19],"class_list":["post-25","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-adwords-scripts","category-tools","tag-adwords","tag-adwords-script","tag-labels"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Labels in Accounts mit AdWords Script erstellen - DAIR Media : Online Marketing Technology Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dair-media.net\/blog\/labels-in-accounts-mit-adwords-script-erstellen\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Labels in Accounts mit AdWords Script erstellen - DAIR Media : Online Marketing Technology Blog\" \/>\n<meta property=\"og:description\" content=\"Beim Verwalten von AdWords Account sind Labels ein sehr n\u00fctzliches Hilfsmittel, um elemente wie Kampagnen, Anzeigengruppen, Anzeigen oder Keywords zu markieren, diese zu filtern oder entsprechende Berichte und andere Aktionen an mit Labels markierten Elementen auszuf\u00fchren. Ein paar gute Beispiele f\u00fcr die Verwendung von Labels liefert Sascha Schmitz in seinem Blog. Meistens werden immer wieder ... Weiterlesen\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dair-media.net\/blog\/labels-in-accounts-mit-adwords-script-erstellen\/\" \/>\n<meta property=\"og:site_name\" content=\"DAIR Media : Online Marketing Technology Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/dairmedia\/\" \/>\n<meta property=\"article:published_time\" content=\"2015-07-24T07:53:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-01-06T12:57:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dair-media.net\/blog\/wp-content\/uploads\/2016\/03\/AdWords-Scripts-Screen.png\" \/>\n\t<meta property=\"og:image:width\" content=\"830\" \/>\n\t<meta property=\"og:image:height\" content=\"488\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Alexander Gut\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@dair_media\" \/>\n<meta name=\"twitter:site\" content=\"@dair_media\" \/>\n<meta name=\"twitter:label1\" content=\"Verfasst von\" \/>\n\t<meta name=\"twitter:data1\" content=\"Alexander Gut\" \/>\n\t<meta name=\"twitter:label2\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data2\" content=\"3\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/labels-in-accounts-mit-adwords-script-erstellen\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/labels-in-accounts-mit-adwords-script-erstellen\\\/\"},\"author\":{\"name\":\"Alexander Gut\",\"@id\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/#\\\/schema\\\/person\\\/6268213ba200d015ba1183f584b4be36\"},\"headline\":\"Labels in Accounts mit AdWords Script erstellen\",\"datePublished\":\"2015-07-24T07:53:00+00:00\",\"dateModified\":\"2017-01-06T12:57:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/labels-in-accounts-mit-adwords-script-erstellen\\\/\"},\"wordCount\":233,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/labels-in-accounts-mit-adwords-script-erstellen\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/03\\\/AdWords-Scripts-Screen.png\",\"keywords\":[\"AdWords\",\"AdWords Script\",\"Labels\"],\"articleSection\":[\"AdWords Scripts\",\"Tools\"],\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/labels-in-accounts-mit-adwords-script-erstellen\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/labels-in-accounts-mit-adwords-script-erstellen\\\/\",\"url\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/labels-in-accounts-mit-adwords-script-erstellen\\\/\",\"name\":\"Labels in Accounts mit AdWords Script erstellen - DAIR Media : Online Marketing Technology Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/labels-in-accounts-mit-adwords-script-erstellen\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/labels-in-accounts-mit-adwords-script-erstellen\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/03\\\/AdWords-Scripts-Screen.png\",\"datePublished\":\"2015-07-24T07:53:00+00:00\",\"dateModified\":\"2017-01-06T12:57:28+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/labels-in-accounts-mit-adwords-script-erstellen\\\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/labels-in-accounts-mit-adwords-script-erstellen\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/labels-in-accounts-mit-adwords-script-erstellen\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/03\\\/AdWords-Scripts-Screen.png\",\"contentUrl\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/03\\\/AdWords-Scripts-Screen.png\",\"width\":830,\"height\":488,\"caption\":\"AdWords Scripts\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/labels-in-accounts-mit-adwords-script-erstellen\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Google AdWords\",\"item\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/category\\\/adwords\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"AdWords Scripts\",\"item\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/category\\\/adwords\\\/adwords-scripts\\\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Labels in Accounts mit AdWords Script erstellen\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/\",\"name\":\"DAIR Media : Online Marketing Technology Blog\",\"description\":\"Suchmaschinenmarketing (SEM), Suchmaschinenwerbung (SEA) mit Google Ads, Web Analytics, Conversion Optimierung und mehr...\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/#organization\",\"name\":\"DAIR Media\",\"url\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/03\\\/dair-media-logo.png\",\"contentUrl\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/03\\\/dair-media-logo.png\",\"width\":250,\"height\":250,\"caption\":\"DAIR Media\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/dairmedia\\\/\",\"https:\\\/\\\/x.com\\\/dair_media\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/dair-media\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.dair-media.net\\\/blog\\\/#\\\/schema\\\/person\\\/6268213ba200d015ba1183f584b4be36\",\"name\":\"Alexander Gut\",\"description\":\"Diplom-Informatiker, Online Marketing Technologist, selbst\u00e4ndiger Online-Marketing Berater, Google AdWords-Spezialist &amp; Google AdWords Partner. Seit 1996 bin ich online und besch\u00e4ftige mich mit Konzeption und Realisierung von Web- und E-Commerce-Portalen. Gleichzeitig besch\u00e4ftige ich mich seit 2005 mit Online-Marketing. Meine Schwerpunkte sind Suchmaschinen\u00adwerbung (SEM\\\/SEA) mit Google AdWords, Web Analyse und Conversion Optimierung.\",\"sameAs\":[\"https:\\\/\\\/www.dair-media.net\",\"https:\\\/\\\/x.com\\\/dair_media\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Labels in Accounts mit AdWords Script erstellen - DAIR Media : Online Marketing Technology Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.dair-media.net\/blog\/labels-in-accounts-mit-adwords-script-erstellen\/","og_locale":"de_DE","og_type":"article","og_title":"Labels in Accounts mit AdWords Script erstellen - DAIR Media : Online Marketing Technology Blog","og_description":"Beim Verwalten von AdWords Account sind Labels ein sehr n\u00fctzliches Hilfsmittel, um elemente wie Kampagnen, Anzeigengruppen, Anzeigen oder Keywords zu markieren, diese zu filtern oder entsprechende Berichte und andere Aktionen an mit Labels markierten Elementen auszuf\u00fchren. Ein paar gute Beispiele f\u00fcr die Verwendung von Labels liefert Sascha Schmitz in seinem Blog. Meistens werden immer wieder ... Weiterlesen","og_url":"https:\/\/www.dair-media.net\/blog\/labels-in-accounts-mit-adwords-script-erstellen\/","og_site_name":"DAIR Media : Online Marketing Technology Blog","article_publisher":"https:\/\/www.facebook.com\/dairmedia\/","article_published_time":"2015-07-24T07:53:00+00:00","article_modified_time":"2017-01-06T12:57:28+00:00","og_image":[{"width":830,"height":488,"url":"https:\/\/www.dair-media.net\/blog\/wp-content\/uploads\/2016\/03\/AdWords-Scripts-Screen.png","type":"image\/png"}],"author":"Alexander Gut","twitter_card":"summary_large_image","twitter_creator":"@dair_media","twitter_site":"@dair_media","twitter_misc":{"Verfasst von":"Alexander Gut","Gesch\u00e4tzte Lesezeit":"3\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dair-media.net\/blog\/labels-in-accounts-mit-adwords-script-erstellen\/#article","isPartOf":{"@id":"https:\/\/www.dair-media.net\/blog\/labels-in-accounts-mit-adwords-script-erstellen\/"},"author":{"name":"Alexander Gut","@id":"https:\/\/www.dair-media.net\/blog\/#\/schema\/person\/6268213ba200d015ba1183f584b4be36"},"headline":"Labels in Accounts mit AdWords Script erstellen","datePublished":"2015-07-24T07:53:00+00:00","dateModified":"2017-01-06T12:57:28+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dair-media.net\/blog\/labels-in-accounts-mit-adwords-script-erstellen\/"},"wordCount":233,"commentCount":0,"publisher":{"@id":"https:\/\/www.dair-media.net\/blog\/#organization"},"image":{"@id":"https:\/\/www.dair-media.net\/blog\/labels-in-accounts-mit-adwords-script-erstellen\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dair-media.net\/blog\/wp-content\/uploads\/2016\/03\/AdWords-Scripts-Screen.png","keywords":["AdWords","AdWords Script","Labels"],"articleSection":["AdWords Scripts","Tools"],"inLanguage":"de","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dair-media.net\/blog\/labels-in-accounts-mit-adwords-script-erstellen\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dair-media.net\/blog\/labels-in-accounts-mit-adwords-script-erstellen\/","url":"https:\/\/www.dair-media.net\/blog\/labels-in-accounts-mit-adwords-script-erstellen\/","name":"Labels in Accounts mit AdWords Script erstellen - DAIR Media : Online Marketing Technology Blog","isPartOf":{"@id":"https:\/\/www.dair-media.net\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dair-media.net\/blog\/labels-in-accounts-mit-adwords-script-erstellen\/#primaryimage"},"image":{"@id":"https:\/\/www.dair-media.net\/blog\/labels-in-accounts-mit-adwords-script-erstellen\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dair-media.net\/blog\/wp-content\/uploads\/2016\/03\/AdWords-Scripts-Screen.png","datePublished":"2015-07-24T07:53:00+00:00","dateModified":"2017-01-06T12:57:28+00:00","breadcrumb":{"@id":"https:\/\/www.dair-media.net\/blog\/labels-in-accounts-mit-adwords-script-erstellen\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dair-media.net\/blog\/labels-in-accounts-mit-adwords-script-erstellen\/"]}]},{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/www.dair-media.net\/blog\/labels-in-accounts-mit-adwords-script-erstellen\/#primaryimage","url":"https:\/\/www.dair-media.net\/blog\/wp-content\/uploads\/2016\/03\/AdWords-Scripts-Screen.png","contentUrl":"https:\/\/www.dair-media.net\/blog\/wp-content\/uploads\/2016\/03\/AdWords-Scripts-Screen.png","width":830,"height":488,"caption":"AdWords Scripts"},{"@type":"BreadcrumbList","@id":"https:\/\/www.dair-media.net\/blog\/labels-in-accounts-mit-adwords-script-erstellen\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.dair-media.net\/blog\/"},{"@type":"ListItem","position":2,"name":"Google AdWords","item":"https:\/\/www.dair-media.net\/blog\/category\/adwords\/"},{"@type":"ListItem","position":3,"name":"AdWords Scripts","item":"https:\/\/www.dair-media.net\/blog\/category\/adwords\/adwords-scripts\/"},{"@type":"ListItem","position":4,"name":"Labels in Accounts mit AdWords Script erstellen"}]},{"@type":"WebSite","@id":"https:\/\/www.dair-media.net\/blog\/#website","url":"https:\/\/www.dair-media.net\/blog\/","name":"DAIR Media : Online Marketing Technology Blog","description":"Suchmaschinenmarketing (SEM), Suchmaschinenwerbung (SEA) mit Google Ads, Web Analytics, Conversion Optimierung und mehr...","publisher":{"@id":"https:\/\/www.dair-media.net\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dair-media.net\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Organization","@id":"https:\/\/www.dair-media.net\/blog\/#organization","name":"DAIR Media","url":"https:\/\/www.dair-media.net\/blog\/","logo":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/www.dair-media.net\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.dair-media.net\/blog\/wp-content\/uploads\/2016\/03\/dair-media-logo.png","contentUrl":"https:\/\/www.dair-media.net\/blog\/wp-content\/uploads\/2016\/03\/dair-media-logo.png","width":250,"height":250,"caption":"DAIR Media"},"image":{"@id":"https:\/\/www.dair-media.net\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/dairmedia\/","https:\/\/x.com\/dair_media","https:\/\/www.linkedin.com\/company\/dair-media"]},{"@type":"Person","@id":"https:\/\/www.dair-media.net\/blog\/#\/schema\/person\/6268213ba200d015ba1183f584b4be36","name":"Alexander Gut","description":"Diplom-Informatiker, Online Marketing Technologist, selbst\u00e4ndiger Online-Marketing Berater, Google AdWords-Spezialist &amp; Google AdWords Partner. Seit 1996 bin ich online und besch\u00e4ftige mich mit Konzeption und Realisierung von Web- und E-Commerce-Portalen. Gleichzeitig besch\u00e4ftige ich mich seit 2005 mit Online-Marketing. Meine Schwerpunkte sind Suchmaschinen\u00adwerbung (SEM\/SEA) mit Google AdWords, Web Analyse und Conversion Optimierung.","sameAs":["https:\/\/www.dair-media.net","https:\/\/x.com\/dair_media"]}]}},"_links":{"self":[{"href":"https:\/\/www.dair-media.net\/blog\/wp-json\/wp\/v2\/posts\/25","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dair-media.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dair-media.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dair-media.net\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dair-media.net\/blog\/wp-json\/wp\/v2\/comments?post=25"}],"version-history":[{"count":6,"href":"https:\/\/www.dair-media.net\/blog\/wp-json\/wp\/v2\/posts\/25\/revisions"}],"predecessor-version":[{"id":193,"href":"https:\/\/www.dair-media.net\/blog\/wp-json\/wp\/v2\/posts\/25\/revisions\/193"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dair-media.net\/blog\/wp-json\/wp\/v2\/media\/13"}],"wp:attachment":[{"href":"https:\/\/www.dair-media.net\/blog\/wp-json\/wp\/v2\/media?parent=25"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dair-media.net\/blog\/wp-json\/wp\/v2\/categories?post=25"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dair-media.net\/blog\/wp-json\/wp\/v2\/tags?post=25"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}