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

Description

Creates a new user. Requires either an email or a mobile number since these fields are used as the unique user identifier in the system

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:userCreate>
            <email>testuser1@test.com</email>
            <!--Optional:-->
            <mobileNumber>47505606707</mobileNumber>
            <!--Zero or more repetitions:-->
            <attributes>
                <name>isocountrycode</name>
                <value>DK</value>
            </attributes>
        </ecm:userCreate>
    </soapenv:Body>
</soapenv:Envelope>

  • No labels