<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How can I get a List of ALL TAGS in my Organization? in ArcGIS API for Python Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-python-questions/how-can-i-get-a-list-of-all-tags-in-my/m-p/757447#M384</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We want to clean out unwanted TAGS from our ArcGIS Online Organization.&lt;/P&gt;&lt;P&gt;Can I use the Python API or something else to do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Aaron&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Mar 2019 20:00:46 GMT</pubDate>
    <dc:creator>AaronPaul5</dc:creator>
    <dc:date>2019-03-12T20:00:46Z</dc:date>
    <item>
      <title>How can I get a List of ALL TAGS in my Organization?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/how-can-i-get-a-list-of-all-tags-in-my/m-p/757447#M384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We want to clean out unwanted TAGS from our ArcGIS Online Organization.&lt;/P&gt;&lt;P&gt;Can I use the Python API or something else to do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Aaron&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Mar 2019 20:00:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/how-can-i-get-a-list-of-all-tags-in-my/m-p/757447#M384</guid>
      <dc:creator>AaronPaul5</dc:creator>
      <dc:date>2019-03-12T20:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: How can I get a List of ALL TAGS in my Organization?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/how-can-i-get-a-list-of-all-tags-in-my/m-p/757448#M385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Aaron,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can search by your organization id, then loop though all the items and print out the tags. Below is an example....&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcgis
&lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; arcgis&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;gis &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; GIS

gis &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; GIS&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

search_result &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; gis&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;content&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;search&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;query&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"orgid: Your org id here"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; max_items &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;100&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; item &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; search_result&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;item&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;tags&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 08:06:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/how-can-i-get-a-list-of-all-tags-in-my/m-p/757448#M385</guid>
      <dc:creator>MunachisoOgbuchiekwe</dc:creator>
      <dc:date>2021-12-12T08:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: How can I get a List of ALL TAGS in my Organization?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/how-can-i-get-a-list-of-all-tags-in-my/m-p/757449#M386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Munachiso,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for the easy to follow code snippet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am now trying to use the same code for Portal.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Should it work in portal and why doesn't it need credentials to get the tags?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you again,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Aaron&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Nov 2019 23:04:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/how-can-i-get-a-list-of-all-tags-in-my/m-p/757449#M386</guid>
      <dc:creator>AaronPaul5</dc:creator>
      <dc:date>2019-11-25T23:04:37Z</dc:date>
    </item>
    <item>
      <title>Re: How can I get a List of ALL TAGS in my Organization?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/how-can-i-get-a-list-of-all-tags-in-my/m-p/1119632#M6848</link>
      <description>&lt;P&gt;this string is not working for me. does anyone have an update?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Nov 2021 18:33:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/how-can-i-get-a-list-of-all-tags-in-my/m-p/1119632#M6848</guid>
      <dc:creator>BertramGilfoyle</dc:creator>
      <dc:date>2021-11-23T18:33:29Z</dc:date>
    </item>
    <item>
      <title>Re: How can I get a List of ALL TAGS in my Organization?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/how-can-i-get-a-list-of-all-tags-in-my/m-p/1658503#M11736</link>
      <description>&lt;P&gt;&lt;SPAN&gt;There is one way to get a list of all the Tags in your Org.&amp;nbsp; If you generate an Item Report, one of the columns in the outputted CSV file is 'Tags'.&amp;nbsp; It will take a lot of hand-jamming an cleaning but you will have your list of all your tags.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Oct 2025 16:28:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/how-can-i-get-a-list-of-all-tags-in-my/m-p/1658503#M11736</guid>
      <dc:creator>Charlie_Kaufman</dc:creator>
      <dc:date>2025-10-16T16:28:50Z</dc:date>
    </item>
  </channel>
</rss>

