UpdateUser¶
Updates a user's properties.
| 1 |  | 
Parameters¶
( string | Identity ) identity
     The identity of the user to update.
UserInfo properties
     An object containing the properties to update for the user.
Returns¶
The updated user identity.
Remarks¶
The properties object is a JavaScript object that can contain a subset of user properties to update. Not all properties are required; only the properties specified in this object will be updated. 
Setting a user password using the default emakin organization provider:¶
| 1 2 3 4 5 6 |  | 
Associating an Active Directory logon with a user:¶
| 1 2 3 4 5 6 |  | 
Types¶
UserInfo¶
avatar : large : string 
normal : string 
small : string 
 Avatar urls of user
email : string
 Email address of user
firstname : string
 First name of user
id : string
 Provider specific user id
language : string
 Language of user
lastname : string
 Last name of user
name : string
 Full name of user
otherProperties : Array<UserInfoProperty>
 Provider specific other properties to map
password : string
 Password of user.
providerName : string
 Name of provider. Default is "Organization"
subjectId : string
 Provider specific subject id
UserInfoProperty¶
name : string
 Name of property
value : string
 Value of property