<?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: A simple question with UpdateUserReq AXL 11.5 in Webex for Developers</title>
    <link>https://community.cisco.com/t5/webex-for-developers/a-simple-question-with-updateuserreq-axl-11-5/m-p/4176757#M235</link>
    <description>&lt;P&gt;You're right .. I was tired from a tough day of work... when i read your reply i suppose to have did something wrong... and yes! do you know what i did? I was looking for user change in the old CUCM... WTF... and the code below did his work..&lt;BR /&gt;Ps sorry for my english &lt;LI-EMOJI id="lia_slightly-smiling-face" title=":slightly_smiling_face:"&gt;&lt;/LI-EMOJI&gt; And Thx you for you help!&lt;/P&gt;&lt;PRE&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;
&amp;lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&amp;gt;
    &amp;lt;soap:Body&amp;gt;
        &amp;lt;updateUser xmlns="http://www.cisco.com/AXL/API/11.5"&amp;gt;
            &amp;lt;userid xmlns=""&amp;gt;3130&amp;lt;/userid&amp;gt;
            &amp;lt;userLocale xsi:nil="true" xmlns="" /&amp;gt;
            &amp;lt;associatedDevices xmlns=""&amp;gt;
                &amp;lt;device&amp;gt;SEP000000003130&amp;lt;/device&amp;gt;
            &amp;lt;/associatedDevices&amp;gt;
            &amp;lt;associatedGroups xmlns=""&amp;gt;
                &amp;lt;userGroup&amp;gt;
                    &amp;lt;name&amp;gt;Standard CCM End Users&amp;lt;/name&amp;gt;
                    &amp;lt;userRoles&amp;gt;
                        &amp;lt;userRole&amp;gt;Standard CCM End Users&amp;lt;/userRole&amp;gt;
                        &amp;lt;userRole&amp;gt;Standard CCMUSER Administration&amp;lt;/userRole&amp;gt;
                    &amp;lt;/userRoles&amp;gt;
                &amp;lt;/userGroup&amp;gt;
            &amp;lt;/associatedGroups&amp;gt;
            &amp;lt;digestCredentials xmlns="" /&amp;gt;
            &amp;lt;subscribeCallingSearchSpaceName uuid="" xmlns="" /&amp;gt;
            &amp;lt;mlppPassword xmlns="" /&amp;gt;
            &amp;lt;serviceProfile uuid="" xmlns="" /&amp;gt;
            &amp;lt;directoryUri xmlns="" /&amp;gt;
            &amp;lt;selfService xmlns="" /&amp;gt;
            &amp;lt;userProfile uuid="" xmlns="" /&amp;gt;
            &amp;lt;ldapDirectoryName uuid="" xmlns="" /&amp;gt;
            &amp;lt;ipccExtension uuid="" xmlns="" /&amp;gt;
            &amp;lt;convertUserAccount uuid="" xmlns="" /&amp;gt;
        &amp;lt;/updateUser&amp;gt;
    &amp;lt;/soap:Body&amp;gt;
&amp;lt;/soap:Envelope&amp;gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 31 Oct 2020 01:41:50 GMT</pubDate>
    <dc:creator>Sandro Galletti</dc:creator>
    <dc:date>2020-10-31T01:41:50Z</dc:date>
    <item>
      <title>A simple question with UpdateUserReq AXL 11.5</title>
      <link>https://community.cisco.com/t5/webex-for-developers/a-simple-question-with-updateuserreq-axl-11-5/m-p/4175879#M229</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;public AXLAPI11::UpdateUserReq UpdateUserReq11(string userId,string[] associatedDevices)
        {
            AXLAPI11::UpdateUserReq updateUserReq = new AXLAPI11::UpdateUserReq()
            {
                ItemElementName = AXLAPI11::ItemChoiceType6.userid,
                Item = userId,
                associatedDevices = associatedDevices,
            };
            return updateUserReq;
        }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using this simple script to associate a device to a phone, but when do the call to cucm to update the user&lt;BR /&gt;i receive an error.&lt;BR /&gt;ERROR [http-bio-443-exec-9] axlapiservice.AXLAPIServiceSkeleton - com.cisco.&lt;A href="http://www.axlapiservice.AXLAPIServiceSkeleton@9f68e1" target="_blank" rel="noopener"&gt;www.axlapiservice.AXLAPIServiceSkeleton@9f68e1&lt;/A&gt;&lt;BR /&gt;java.lang.NullPointerException&lt;BR /&gt;&lt;BR /&gt;The updaterequest need all fields filled with old/new values or i can update a single parameter?&lt;BR /&gt;&lt;BR /&gt;Thx you&lt;/P&gt;</description>
      <pubDate>Thu, 29 Oct 2020 15:05:37 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/a-simple-question-with-updateuserreq-axl-11-5/m-p/4175879#M229</guid>
      <dc:creator>Sandro Galletti</dc:creator>
      <dc:date>2020-10-29T15:05:37Z</dc:date>
    </item>
    <item>
      <title>Re: A simple question with UpdateUserReq AXL 11.5</title>
      <link>https://community.cisco.com/t5/webex-for-developers/a-simple-question-with-updateuserreq-axl-11-5/m-p/4176189#M230</link>
      <description>&lt;P&gt;All the elements (besides the ID) should be optional - just provide what should be updated.&lt;BR /&gt;Can you get output of the actual HTTP request/XML object that gets sent to AXL?&amp;nbsp; If you have a small working sample of the code that might be helpful...&lt;BR /&gt;I usually test requests out first using &lt;A href="https://www.soapui.org/" target="_self"&gt;SoapUI&lt;/A&gt; before implementing in code - if you can get it working there, it may help understanding what your WSDL autogen code is doing.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Oct 2020 23:43:20 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/a-simple-question-with-updateuserreq-axl-11-5/m-p/4176189#M230</guid>
      <dc:creator>dstaudt</dc:creator>
      <dc:date>2020-10-29T23:43:20Z</dc:date>
    </item>
    <item>
      <title>Re: A simple question with UpdateUserReq AXL 11.5</title>
      <link>https://community.cisco.com/t5/webex-for-developers/a-simple-question-with-updateuserreq-axl-11-5/m-p/4176353#M231</link>
      <description>&lt;P&gt;Thx you dstaudt,&lt;BR /&gt;i did a sniffing to retrieve the soap request originated by code sended to CUCM and this is the result:&lt;/P&gt;&lt;PRE&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;
&amp;lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&amp;gt;
    &amp;lt;soap:Body&amp;gt;
        &amp;lt;updateUser xmlns="http://www.cisco.com/AXL/API/11.5"&amp;gt;
            &amp;lt;userid xmlns=""&amp;gt;3129&amp;lt;/userid&amp;gt;
            &amp;lt;userLocale xsi:nil="true" xmlns="" /&amp;gt;
            &amp;lt;associatedDevices xmlns=""&amp;gt;
                &amp;lt;device&amp;gt;SEP000000003129&amp;lt;/device&amp;gt;
            &amp;lt;/associatedDevices&amp;gt;
            &amp;lt;associatedGroups xmlns=""&amp;gt;
                &amp;lt;userGroup&amp;gt;
                    &amp;lt;name&amp;gt;Standard CCM End Users&amp;lt;/name&amp;gt;
                    &amp;lt;userRoles&amp;gt;
                        &amp;lt;userRole&amp;gt;Standard CCM End Users&amp;lt;/userRole&amp;gt;
                        &amp;lt;userRole&amp;gt;Standard CCMUSER Administration&amp;lt;/userRole&amp;gt;
                    &amp;lt;/userRoles&amp;gt;
                &amp;lt;/userGroup&amp;gt;
            &amp;lt;/associatedGroups&amp;gt;
            &amp;lt;digestCredentials xsi:nil="true" xmlns="" /&amp;gt;
            &amp;lt;subscribeCallingSearchSpaceName xsi:nil="true" xmlns="" /&amp;gt;
            &amp;lt;mlppPassword xsi:nil="true" xmlns="" /&amp;gt;
            &amp;lt;serviceProfile xsi:nil="true" xmlns="" /&amp;gt;
            &amp;lt;directoryUri xsi:nil="true" xmlns="" /&amp;gt;
            &amp;lt;selfService xsi:nil="true" xmlns="" /&amp;gt;
            &amp;lt;userProfile xsi:nil="true" xmlns="" /&amp;gt;
            &amp;lt;ldapDirectoryName xsi:nil="true" xmlns="" /&amp;gt;
            &amp;lt;ipccExtension xsi:nil="true" xmlns="" /&amp;gt;
            &amp;lt;convertUserAccount xsi:nil="true" xmlns="" /&amp;gt;
        &amp;lt;/updateUser&amp;gt;
    &amp;lt;/soap:Body&amp;gt;
&amp;lt;/soap:Envelope&amp;gt;&lt;/PRE&gt;&lt;P&gt;Below the server response:&lt;/P&gt;&lt;PRE&gt;&amp;lt;?xml version='1.0' encoding='utf-8'?&amp;gt;
&amp;lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"&amp;gt;
    &amp;lt;soapenv:Body&amp;gt;
        &amp;lt;soapenv:Fault&amp;gt;
            &amp;lt;faultcode&amp;gt;soapenv:Server&amp;lt;/faultcode&amp;gt;
            &amp;lt;faultstring&amp;gt;&amp;lt;/faultstring&amp;gt;
            &amp;lt;detail&amp;gt;
                &amp;lt;axlError&amp;gt;
                    &amp;lt;axlcode&amp;gt;-1&amp;lt;/axlcode&amp;gt;
                    &amp;lt;axlmessage&amp;gt;&amp;lt;/axlmessage&amp;gt;
                    &amp;lt;request&amp;gt;updateUser&amp;lt;/request&amp;gt;
                &amp;lt;/axlError&amp;gt;
            &amp;lt;/detail&amp;gt;
        &amp;lt;/soapenv:Fault&amp;gt;
    &amp;lt;/soapenv:Body&amp;gt;
&amp;lt;/soapenv:Envelope&amp;gt;&lt;/PRE&gt;&lt;P&gt;And the c# Code is very simple:&lt;/P&gt;&lt;PRE&gt;AXLAPI11::UpdateUserReq updateUserReq11 = new UpdateUserRequest().UpdateUserReq11(user.userid);
string[] assUserArr = new string[getUserRes9.@return.user.associatedDevices.Length];
int counter = 0;
foreach (string userass in getUserRes9.@return.user.associatedDevices)
{
  assUserArr[counter] = userass;
  counter++;
}
foreach (AXLAPI9::RUserUserGroup Ru in getUserRes9.@return.user.associatedGroups)
{
  AXLAPI11::UpdateUserReqUserGroup Xu = new AXLAPI11::UpdateUserReqUserGroup() { name = Ru.name, userRoles = Ru.userRoles };
  XuArr[counter] = Xu;
  counter++;
}
updateUserReq11.associatedGroups = XuArr;
updateUserReq11.associatedDevices = assUserArr;
AXLAPI11::StandardResponse standardResponse = AXL11_5.updateUser(updateUserReq11);&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Oct 2020 11:13:57 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/a-simple-question-with-updateuserreq-axl-11-5/m-p/4176353#M231</guid>
      <dc:creator>Sandro Galletti</dc:creator>
      <dc:date>2020-10-30T11:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: A simple question with UpdateUserReq AXL 11.5</title>
      <link>https://community.cisco.com/t5/webex-for-developers/a-simple-question-with-updateuserreq-axl-11-5/m-p/4176555#M232</link>
      <description>&lt;P&gt;&lt;STRONG&gt;UPDATE 1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If i set value to empty and not null as the xml below the soap request gone fine..BUT ! ...because there is always a BUT!&lt;BR /&gt;It didn't do anything... the device is not associated with the end user &lt;LI-EMOJI id="lia_disappointed-face" title=":disappointed_face:"&gt;&lt;/LI-EMOJI&gt; &lt;LI-EMOJI id="lia_disappointed-face" title=":disappointed_face:"&gt;&lt;/LI-EMOJI&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;REQUEST

&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;
&amp;lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&amp;gt;
    &amp;lt;soap:Body&amp;gt;
        &amp;lt;updateUser xmlns="http://www.cisco.com/AXL/API/11.5"&amp;gt;
            &amp;lt;userid xmlns=""&amp;gt;3130&amp;lt;/userid&amp;gt;
            &amp;lt;userLocale xsi:nil="true" xmlns="" /&amp;gt;
            &amp;lt;associatedDevices xmlns=""&amp;gt;
                &amp;lt;device&amp;gt;SEP000000003130&amp;lt;/device&amp;gt;
            &amp;lt;/associatedDevices&amp;gt;
            &amp;lt;associatedGroups xmlns=""&amp;gt;
                &amp;lt;userGroup&amp;gt;
                    &amp;lt;name&amp;gt;Standard CCM End Users&amp;lt;/name&amp;gt;
                    &amp;lt;userRoles&amp;gt;
                        &amp;lt;userRole&amp;gt;Standard CCM End Users&amp;lt;/userRole&amp;gt;
                        &amp;lt;userRole&amp;gt;Standard CCMUSER Administration&amp;lt;/userRole&amp;gt;
                    &amp;lt;/userRoles&amp;gt;
                &amp;lt;/userGroup&amp;gt;
            &amp;lt;/associatedGroups&amp;gt;
            &amp;lt;digestCredentials xmlns="" /&amp;gt;
            &amp;lt;subscribeCallingSearchSpaceName uuid="" xmlns="" /&amp;gt;
            &amp;lt;mlppPassword xmlns="" /&amp;gt;
            &amp;lt;serviceProfile uuid="" xmlns="" /&amp;gt;
            &amp;lt;directoryUri xmlns="" /&amp;gt;
            &amp;lt;selfService xmlns="" /&amp;gt;
            &amp;lt;userProfile uuid="" xmlns="" /&amp;gt;
            &amp;lt;ldapDirectoryName uuid="" xmlns="" /&amp;gt;
            &amp;lt;ipccExtension uuid="" xmlns="" /&amp;gt;
            &amp;lt;convertUserAccount uuid="" xmlns="" /&amp;gt;
        &amp;lt;/updateUser&amp;gt;
    &amp;lt;/soap:Body&amp;gt;
&amp;lt;/soap:Envelope&amp;gt;&lt;/PRE&gt;&lt;PRE&gt;REPLY

&amp;lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"&amp;gt;
   &amp;lt;soapenv:Body&amp;gt;
      &amp;lt;ns:updateUserResponse xmlns:ns="http://www.cisco.com/AXL/API/11.5"&amp;gt;
         &amp;lt;return&amp;gt;{1C3434DA-548C-7D0E-55E3-7B41FE6A8C9D}&amp;lt;/return&amp;gt;
      &amp;lt;/ns:updateUserResponse&amp;gt;
   &amp;lt;/soapenv:Body&amp;gt;
&amp;lt;/soapenv:Envelope&amp;gt;&lt;/PRE&gt;&lt;P&gt;And the AXL Log from CUCM&lt;BR /&gt;2020-10-30 17:13:07,531 INFO [http-bio-443-exec-13] filters.TimingFilter - Request 1603992155205 received from ******* at ip ******* was processed in 100ms&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Stay Tuned &lt;LI-EMOJI id="lia_slightly-smiling-face" title=":slightly_smiling_face:"&gt;&lt;/LI-EMOJI&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Oct 2020 16:14:45 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/a-simple-question-with-updateuserreq-axl-11-5/m-p/4176555#M232</guid>
      <dc:creator>Sandro Galletti</dc:creator>
      <dc:date>2020-10-30T16:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: A simple question with UpdateUserReq AXL 11.5</title>
      <link>https://community.cisco.com/t5/webex-for-developers/a-simple-question-with-updateuserreq-axl-11-5/m-p/4176677#M233</link>
      <description>&lt;P&gt;This seems to be an issue previously identified in &lt;A href="https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvu98594" target="_blank"&gt;https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvu98594&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The workaround is what you found below, i.e. either ommit the problematic xsi:nil tags, or provide them as empty.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Oct 2020 19:43:45 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/a-simple-question-with-updateuserreq-axl-11-5/m-p/4176677#M233</guid>
      <dc:creator>dstaudt</dc:creator>
      <dc:date>2020-10-30T19:43:45Z</dc:date>
    </item>
    <item>
      <title>Re: A simple question with UpdateUserReq AXL 11.5</title>
      <link>https://community.cisco.com/t5/webex-for-developers/a-simple-question-with-updateuserreq-axl-11-5/m-p/4176680#M234</link>
      <description>&lt;P&gt;Hmm...in testing around with this, at first it seemed I was able to reproduce your issue here, but after awhile it seemed to start working...not sure if I was originally doing something unexpected/wrong, if something in AXL/CUCM unexpectedly changed, or..?&lt;/P&gt;
&lt;P&gt;This is the request that is now working (&amp;lt;associatedDevices&amp;gt; was originally empty for this user):&lt;/P&gt;
&lt;PRE&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;
&amp;lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&amp;gt;
    &amp;lt;soap:Body&amp;gt;
        &amp;lt;updateUser xmlns="http://www.cisco.com/AXL/API/11.5"&amp;gt;
            &amp;lt;userid xmlns=""&amp;gt;dstaudt2&amp;lt;/userid&amp;gt;
            &amp;lt;userLocale xsi:nil="true" xmlns="" /&amp;gt;
            &amp;lt;associatedDevices xmlns=""&amp;gt;
               &amp;lt;device&amp;gt;BOTDSTAUDT2&amp;lt;/device&amp;gt;
               &amp;lt;device&amp;gt;CTIPDSTAUDT&amp;lt;/device&amp;gt;
               &amp;lt;device&amp;gt;CSFdstaudt2&amp;lt;/device&amp;gt;
            &amp;lt;/associatedDevices&amp;gt;
            &amp;lt;associatedGroups xmlns=""&amp;gt;
                &amp;lt;userGroup&amp;gt;
                    &amp;lt;name&amp;gt;Standard CCM End Users&amp;lt;/name&amp;gt;
                    &amp;lt;userRoles&amp;gt;
                        &amp;lt;userRole&amp;gt;Standard CCM End Users&amp;lt;/userRole&amp;gt;
                        &amp;lt;userRole&amp;gt;Standard CCMUSER Administration&amp;lt;/userRole&amp;gt;
                    &amp;lt;/userRoles&amp;gt;
                &amp;lt;/userGroup&amp;gt;
            &amp;lt;/associatedGroups&amp;gt;
            &amp;lt;digestCredentials xmlns="" /&amp;gt;
            &amp;lt;subscribeCallingSearchSpaceName uuid="" xmlns="" /&amp;gt;
            &amp;lt;mlppPassword xmlns="" /&amp;gt;
            &amp;lt;serviceProfile uuid="" xmlns="" /&amp;gt;
            &amp;lt;directoryUri xmlns="" /&amp;gt;
            &amp;lt;selfService xmlns="" /&amp;gt;
            &amp;lt;userProfile uuid="" xmlns="" /&amp;gt;
            &amp;lt;ldapDirectoryName uuid="" xmlns="" /&amp;gt;
            &amp;lt;ipccExtension uuid="" xmlns="" /&amp;gt;
            &amp;lt;convertUserAccount uuid="" xmlns="" /&amp;gt;
        &amp;lt;/updateUser&amp;gt;
    &amp;lt;/soap:Body&amp;gt;
&amp;lt;/soap:Envelope&amp;gt;&lt;/PRE&gt;
&lt;P&gt;If you are still having problems and haven't already, you might try increasing the AXL log level - might give a hint.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2020-10-30 at 2.59.11 PM.png" style="width: 983px;"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/87454iA707FF1F32CCB892/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2020-10-30 at 2.59.11 PM.png" alt="Screen Shot 2020-10-30 at 2.59.11 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;If weirdness is still happening, I would suggest opening a DevNet dev support ticket so we can dig into the details/logs: &lt;A href="https://developer.cisco.com/site/support/" target="_blank"&gt;https://developer.cisco.com/site/support/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Oct 2020 20:02:01 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/a-simple-question-with-updateuserreq-axl-11-5/m-p/4176680#M234</guid>
      <dc:creator>dstaudt</dc:creator>
      <dc:date>2020-10-30T20:02:01Z</dc:date>
    </item>
    <item>
      <title>Re: A simple question with UpdateUserReq AXL 11.5</title>
      <link>https://community.cisco.com/t5/webex-for-developers/a-simple-question-with-updateuserreq-axl-11-5/m-p/4176757#M235</link>
      <description>&lt;P&gt;You're right .. I was tired from a tough day of work... when i read your reply i suppose to have did something wrong... and yes! do you know what i did? I was looking for user change in the old CUCM... WTF... and the code below did his work..&lt;BR /&gt;Ps sorry for my english &lt;LI-EMOJI id="lia_slightly-smiling-face" title=":slightly_smiling_face:"&gt;&lt;/LI-EMOJI&gt; And Thx you for you help!&lt;/P&gt;&lt;PRE&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;
&amp;lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&amp;gt;
    &amp;lt;soap:Body&amp;gt;
        &amp;lt;updateUser xmlns="http://www.cisco.com/AXL/API/11.5"&amp;gt;
            &amp;lt;userid xmlns=""&amp;gt;3130&amp;lt;/userid&amp;gt;
            &amp;lt;userLocale xsi:nil="true" xmlns="" /&amp;gt;
            &amp;lt;associatedDevices xmlns=""&amp;gt;
                &amp;lt;device&amp;gt;SEP000000003130&amp;lt;/device&amp;gt;
            &amp;lt;/associatedDevices&amp;gt;
            &amp;lt;associatedGroups xmlns=""&amp;gt;
                &amp;lt;userGroup&amp;gt;
                    &amp;lt;name&amp;gt;Standard CCM End Users&amp;lt;/name&amp;gt;
                    &amp;lt;userRoles&amp;gt;
                        &amp;lt;userRole&amp;gt;Standard CCM End Users&amp;lt;/userRole&amp;gt;
                        &amp;lt;userRole&amp;gt;Standard CCMUSER Administration&amp;lt;/userRole&amp;gt;
                    &amp;lt;/userRoles&amp;gt;
                &amp;lt;/userGroup&amp;gt;
            &amp;lt;/associatedGroups&amp;gt;
            &amp;lt;digestCredentials xmlns="" /&amp;gt;
            &amp;lt;subscribeCallingSearchSpaceName uuid="" xmlns="" /&amp;gt;
            &amp;lt;mlppPassword xmlns="" /&amp;gt;
            &amp;lt;serviceProfile uuid="" xmlns="" /&amp;gt;
            &amp;lt;directoryUri xmlns="" /&amp;gt;
            &amp;lt;selfService xmlns="" /&amp;gt;
            &amp;lt;userProfile uuid="" xmlns="" /&amp;gt;
            &amp;lt;ldapDirectoryName uuid="" xmlns="" /&amp;gt;
            &amp;lt;ipccExtension uuid="" xmlns="" /&amp;gt;
            &amp;lt;convertUserAccount uuid="" xmlns="" /&amp;gt;
        &amp;lt;/updateUser&amp;gt;
    &amp;lt;/soap:Body&amp;gt;
&amp;lt;/soap:Envelope&amp;gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 31 Oct 2020 01:41:50 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/a-simple-question-with-updateuserreq-axl-11-5/m-p/4176757#M235</guid>
      <dc:creator>Sandro Galletti</dc:creator>
      <dc:date>2020-10-31T01:41:50Z</dc:date>
    </item>
  </channel>
</rss>

