<?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 Re: Group Category Template in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/group-category-template/m-p/1682165#M67763</link>
    <description>&lt;P&gt;Oh this could work! I'll try it out, thanks!!&lt;/P&gt;</description>
    <pubDate>Wed, 04 Feb 2026 20:07:25 GMT</pubDate>
    <dc:creator>JessiB</dc:creator>
    <dc:date>2026-02-04T20:07:25Z</dc:date>
    <item>
      <title>Group Category Template</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/group-category-template/m-p/1681606#M67717</link>
      <description>&lt;P&gt;Hi!&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone know if there is a way to create a template for group categories? I want to implement the same group categories in every group (I have upwards of 100 groups). I want to make a template that I can select that automatically enters in the categories, instead of having to manually type in the categories on all the groups.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Feb 2026 20:00:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/group-category-template/m-p/1681606#M67717</guid>
      <dc:creator>JessiB</dc:creator>
      <dc:date>2026-02-02T20:00:22Z</dc:date>
    </item>
    <item>
      <title>Re: Group Category Template</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/group-category-template/m-p/1681694#M67719</link>
      <description>&lt;P&gt;I do not think there are any template functionality for that. Would setting up organization wide categories work instead? These would be available for all content in the portal.&lt;BR /&gt;&lt;A href="https://doc.arcgis.com/en/arcgis-online/administer/manage-items.htm#ESRI_SECTION1_6EE6EAA55E494C0A9E8391555E7D54F3" target="_blank"&gt;Manage content—ArcGIS Online Help | Documentation&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Feb 2026 07:36:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/group-category-template/m-p/1681694#M67719</guid>
      <dc:creator>AndreasHall</dc:creator>
      <dc:date>2026-02-03T07:36:58Z</dc:date>
    </item>
    <item>
      <title>Re: Group Category Template</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/group-category-template/m-p/1681728#M67721</link>
      <description>&lt;P&gt;Hey thanks for responding!&lt;/P&gt;&lt;P&gt;Unfortunately no, each group is a project, with members limited to those working on that project, so we want&amp;nbsp; each group to have its own set of categories when you open it up. This makes navigation through the project content a little easier, especially for people who aren't as versed in the AGOL platform.&amp;nbsp; We also want to keep it consistent so that no matter what group someone is added to, they how to navigate it. If the GIS overlords are listening, more capabilities with categories would be helpful. I work in the environmental field and the amount of data stored on AGOL with no real way to organize it efficiently for project level work has been a challenge.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Feb 2026 13:45:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/group-category-template/m-p/1681728#M67721</guid>
      <dc:creator>JessiB</dc:creator>
      <dc:date>2026-02-03T13:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: Group Category Template</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/group-category-template/m-p/1681789#M67727</link>
      <description>&lt;P&gt;I think you could accomplish something like this using the ArcGIS REST API within an ArcGIS Notebook.&lt;BR /&gt;&lt;BR /&gt;I tried this in a Notebook and it worked for me - does this accomplish what you need? You could just run this notebook any time you create a new group, updating the groupID variable as needed.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;from arcgis.gis import GIS
import json

gis = GIS("home")

groupID = "your-group-id-string-here"

# Standard category template to assign to new groups
category_schema = {
    "categorySchema": [
        {
            "title": "Main Categories",
            "categories": [
                {"title": "New Category 1"},
                {"title": "New Category 2"},
                {"title": "New Category 3"}
            ]
        }
    ]
}

# Convert schema to JSON string
category_schema_str = json.dumps(category_schema)

# Construct full REST URL
url = f"{gis._portal.resturl}community/groups/{groupID}/assignCategorySchema"

# POST to REST
res = gis._con.post(
    url,
    {
        "categorySchema": category_schema_str,
        "f": "json"
    }
)

print(res)&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Feb 2026 16:47:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/group-category-template/m-p/1681789#M67727</guid>
      <dc:creator>Katie_Clark</dc:creator>
      <dc:date>2026-02-03T16:47:53Z</dc:date>
    </item>
    <item>
      <title>Re: Group Category Template</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/group-category-template/m-p/1682165#M67763</link>
      <description>&lt;P&gt;Oh this could work! I'll try it out, thanks!!&lt;/P&gt;</description>
      <pubDate>Wed, 04 Feb 2026 20:07:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/group-category-template/m-p/1682165#M67763</guid>
      <dc:creator>JessiB</dc:creator>
      <dc:date>2026-02-04T20:07:25Z</dc:date>
    </item>
  </channel>
</rss>

