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

Description

Updates a user identified via email. Updates all 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

v2

Example request

<soapenv:Envelope 
   xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
   xmlns:ecm="http://ecircle.com/developer/ecmapi">
   <soapenv:Header/>
   <soapenv:Body>
      <ecm:userUpdateProfileByEmail>
         <email>testprofile2@test.com</email>
         <attributes>
            <name>user.firstname</name>
            <value>John Adam</value>
         </attributes>
      </ecm:userUpdateProfileByEmail>
   </soapenv:Body>
</soapenv:Envelope>

  • No labels