AddUser Method
Adds a user.
Required Permissions
UserCreateSyntax
public User AddUser(
System.string userName,
System.string email,
System.bool isActive,
System.long[] roleIdArray,
System.long[] vaultIdArray,
ProfileAttr[] attributes
)Public Function AddUser( _
ByVal userName As System.String, _
ByVal email As System.String, _
ByVal isActive As System.Boolean, _
ByVal roleIdArray() As System.Long, _
ByVal vaultIdArray() As System.Long, _
ByVal attributes() As ProfileAttr _
) As UserParameters
| Name | Description |
|---|---|
| userName | The user-friendly display name for the user (decoupled from account names) |
| The email address of the user. | |
| isActive | Tells if the user is active or not. |
| roleIdArray | The roles for the user. |
| vaultIdArray | The Vaults that the user can log in to. |
| attributes | profile attributes for this user |
Return Value
A User object with the newly created user data.