<?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 python api portal users in ArcGIS API for Python Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-python-questions/python-api-portal-users/m-p/853471#M3919</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good Afternoon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am able to use the python api to get a list of the users in my portal, but it isn't all of them. I returns 100 but there are actually 172. For someone that I know is a user, but isn't in the return list, I can still find them when doing a search by their account name. Just wondering if I am missing something.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code i use to get the list of uses is:&lt;/P&gt;&lt;P&gt;gis.users.search()&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 May 2019 16:46:48 GMT</pubDate>
    <dc:creator>MarkJones7</dc:creator>
    <dc:date>2019-05-15T16:46:48Z</dc:date>
    <item>
      <title>python api portal users</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/python-api-portal-users/m-p/853471#M3919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good Afternoon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am able to use the python api to get a list of the users in my portal, but it isn't all of them. I returns 100 but there are actually 172. For someone that I know is a user, but isn't in the return list, I can still find them when doing a search by their account name. Just wondering if I am missing something.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code i use to get the list of uses is:&lt;/P&gt;&lt;P&gt;gis.users.search()&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2019 16:46:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/python-api-portal-users/m-p/853471#M3919</guid>
      <dc:creator>MarkJones7</dc:creator>
      <dc:date>2019-05-15T16:46:48Z</dc:date>
    </item>
    <item>
      <title>Re: python api portal users</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/python-api-portal-users/m-p/853472#M3920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Mark&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The API returns 100 as a default. Set the max_users= parameter to override.&lt;/P&gt;&lt;PRE&gt;_users = gis.users.search(exclude_system=True, max_users=1000)&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Doc" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/447787_snip_20190516132459.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 May 2019 11:28:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/python-api-portal-users/m-p/853472#M3920</guid>
      <dc:creator>HåkonDreyer</dc:creator>
      <dc:date>2019-05-16T11:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: python api portal users</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/python-api-portal-users/m-p/853473#M3921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;classicly simple! thank you kindly! BTW, how did you get that nice print out of the parameters?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 May 2019 11:45:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/python-api-portal-users/m-p/853473#M3921</guid>
      <dc:creator>MarkJones7</dc:creator>
      <dc:date>2019-05-16T11:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: python api portal users</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/python-api-portal-users/m-p/853474#M3922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's one of the niceties of Jupyter. Just add a question mark to a command and you get the documentation.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Screenshot from Jupyter" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/447789_snip_20190516135422.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 May 2019 11:57:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/python-api-portal-users/m-p/853474#M3922</guid>
      <dc:creator>HåkonDreyer</dc:creator>
      <dc:date>2019-05-16T11:57:13Z</dc:date>
    </item>
    <item>
      <title>Re: python api portal users</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/python-api-portal-users/m-p/853475#M3923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sweet! Thanks again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 May 2019 12:08:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/python-api-portal-users/m-p/853475#M3923</guid>
      <dc:creator>MarkJones7</dc:creator>
      <dc:date>2019-05-16T12:08:07Z</dc:date>
    </item>
  </channel>
</rss>

