Page tree
Skip to end of metadata
Go to start of metadata

Description

Updates the user's profile (data stored in the attributes) with the information saved in the attribute list. This method only changes the information that is explicitly mentioned. Attributes that are not mentioned are not changed (there is also a replace method to change the entire profile of a user and to delete attribute values if the attribute is not mentioned for the user).

Available from

v1

Example request

<soapenv:Envelope 
   xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
   xmlns:ecm="http://ecircle.com/developer/ecmapi">
   <soapenv:Header/>
   <soapenv:Body>
      <ecm:userUpdateProfile>
         <userId>498332</userId>
        <attributes>
                    <name>user.firstname</name>
                    <value>Ambrozy</value>
                 </attributes>
                 <attributes>
                    <name>user.lastname</name>
                    <value>Krzakiewicz</value>
                 </attributes>
                 <attributes>
                    <name>user.nickname</name>
                    <value></value>
                 </attributes>
                 <attributes>
                    <name>user.identifier</name>
                    <value>7777</value>
                 </attributes>
             <attributes>
                    <name>user.title</name>
                    <value>1</value>
                 </attributes>
              <attributes>
                    <name>user.dateofbirth</name>
                    <value>1985-09-22</value>
                 </attributes>
                 <attributes>
                    <name>user.zipcode</name>
                    <value>31422</value>
                 </attributes>
              <attributes>
                    <name>user.isolanguagecode</name>
                    <value>pl</value>
                 </attributes>
                 <attributes>
                    <name>user.isocountrycode</name>
                 <value>PL</value> 
                 </attributes>
      </ecm:userUpdateProfile>
   </soapenv:Body>
</soapenv:Envelope>

  • No labels