Description

Replaces all attribute values for a user identified via email. All attribute values that are transmitted with the method are added and replace any existing values. Any currently existing attribute values that are not found in the API call are deleted (except for Member attributes).

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:userReplaceProfileByEmail>
         <email>test@test.com</email>
         <!--Zero or more repetitions:-->
         <attributes>
                <name>user.dateofbirth</name>
                <value>1985-09-22</value>
         </attributes>
      </ecm:userReplaceProfileByEmail>
   </soapenv:Body>
</soapenv:Envelope>