UpdateUserInfo Method
Updates a User and its associations.
Required Permissions
AdminUserUpdateSyntax
public void UpdateUserInfo(
System.long userId,
System.string userName,
System.string email,
System.bool isActive,
System.DateTime expirationDate,
System.long[] roleIdArray,
System.long[] vaultIdArray,
ProfileAttr[] attributes
)Public Sub UpdateUserInfo( _
ByVal userId As System.Long, _
ByVal userName As System.String, _
ByVal email As System.String, _
ByVal isActive As System.Boolean, _
ByVal expirationDate As System.Date, _
ByVal roleIdArray() As System.Long, _
ByVal vaultIdArray() As System.Long, _
ByVal attributes() As ProfileAttr _
) Parameters
| Name | Description |
|---|---|
| userId | This user's ID. |
| userName | The user-friendly display name for the user (decoupled from account names). |
| The email address of the user. | |
| isActive | True or false. |
| expirationDate | |
| roleIdArray | Array of roleId values. |
| vaultIdArray | Array of vaultId values. |
| attributes | Profile attributes for this user. |
Remarks
Can be run only by administrators.