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

Description

Updates a user identified via mobile number. 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

v7

Example request

<soapenv:Envelope 
   xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
   xmlns:ecm="http://ecircle.com/developer/ecmapi">
   <soapenv:Header/>
   <soapenv:Body>
      <ecm:userUpdateProfileByMobileNumber>
         <mobileNumber>48505606707</mobileNumber>
         <!--Zero or more repetitions:-->
         <attributes>
               <name>user.lastname</name>
               <value>Krzakiewicz</value>
         </attributes>
      </ecm:userUpdateProfileByMobileNumber>
   </soapenv:Body>
</soapenv:Envelope>

  • No labels