<?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 to update a user's first and last name with arcgis python library in ArcGIS API for Python Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-python-questions/how-to-update-a-user-s-first-and-last-name-with/m-p/830334#M3159</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;according to &lt;A href="https://esri.github.io/arcgis-python-api/apidoc/html/arcgis.gis.toc.html#arcgis.gis.User.update"&gt;the API documentation&lt;/A&gt;, i should be able to use user.update(first_name='name', last_name='name') to update a user's first and last names. however, it is saying that the function update() has no parameters first_name and last_name. i can however update fullname. (but i still need to update first and last)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 May 2018 21:47:37 GMT</pubDate>
    <dc:creator>deleted-user-pAO6-stmeoAP</dc:creator>
    <dc:date>2018-05-29T21:47:37Z</dc:date>
    <item>
      <title>How to update a user's first and last name with arcgis python library</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/how-to-update-a-user-s-first-and-last-name-with/m-p/830334#M3159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;according to &lt;A href="https://esri.github.io/arcgis-python-api/apidoc/html/arcgis.gis.toc.html#arcgis.gis.User.update"&gt;the API documentation&lt;/A&gt;, i should be able to use user.update(first_name='name', last_name='name') to update a user's first and last names. however, it is saying that the function update() has no parameters first_name and last_name. i can however update fullname. (but i still need to update first and last)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2018 21:47:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/how-to-update-a-user-s-first-and-last-name-with/m-p/830334#M3159</guid>
      <dc:creator>deleted-user-pAO6-stmeoAP</dc:creator>
      <dc:date>2018-05-29T21:47:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to update a user's first and last name with arcgis python library</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/how-to-update-a-user-s-first-and-last-name-with/m-p/830335#M3160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;moved this post to &lt;A href="https://community.esri.com/group/4814"&gt;ArcGIS API for Python&lt;/A&gt;‌ to increase your chances of getting an answer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2018 22:21:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/how-to-update-a-user-s-first-and-last-name-with/m-p/830335#M3160</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-05-29T22:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to update a user's first and last name with arcgis python library</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/how-to-update-a-user-s-first-and-last-name-with/m-p/830336#M3161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/327450"&gt;thomas&lt;/A&gt;&amp;nbsp;- the first_name and last_name parameters were added to the update() function at API release 1.4.0. Can you test that release of the API?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2018 23:20:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/how-to-update-a-user-s-first-and-last-name-with/m-p/830336#M3161</guid>
      <dc:creator>JohnYaist1</dc:creator>
      <dc:date>2018-05-29T23:20:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to update a user's first and last name with arcgis python library</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/how-to-update-a-user-s-first-and-last-name-with/m-p/830337#M3162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;accounts = gis.users.search(query='*')&lt;/P&gt;&lt;P&gt;accounts[0].update(first_name = 'Mike')&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;accounts[0]&lt;/SPAN&gt;&lt;SPAN&gt;.update(last_name = '&lt;/SPAN&gt;&lt;SPAN&gt;Tyson&lt;/SPAN&gt;&lt;SPAN&gt;')&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Mar 2020 17:59:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/how-to-update-a-user-s-first-and-last-name-with/m-p/830337#M3162</guid>
      <dc:creator>WillHughes</dc:creator>
      <dc:date>2020-03-16T17:59:11Z</dc:date>
    </item>
  </channel>
</rss>

