Session_CreateUser
This API creates a new user.
URL
./Session_CreateUser
Input Parameters
Parameters | Description |
---|---|
userName | Name of the new user to be created. |
userPassword | Password for the new user. |
isPasswordChangeable | (Optional) use this parameter to change the password. The default value is false. |
CustomAttributeList | (Optional), use this parameter to add custom attributes to the user. |
Sample SOAP Parameters
<prot:Session_CreateUser>
<userName>cryptouser</userName>
<userPassword>asdf1234</userPassword>
<!--Optional:-->
<isPasswordChanageable>true</isPasswordChanageable>
<!--Optional:-->
<CustomAttributeList>
<CustomAttribute>
<Name>name1</Name>
<Value>value1</Value>
</CustomAttribute>
<CustomAttribute>
<Name>name2</Name>
<Value>value2</Value>
</CustomAttribute>
</CustomAttributeList>
</prot:Session_CreateUser>
Output
User created successfully.
<ns2:Session_CreateUserResponse xmlns:ns2="http://dsws.org/protectappws/">user created successfully.</ns2:Session_CreateUserResponse>