Skip to content

CreateUser

Creates a new user with the specified properties.

1
$Membership.CreateUser(properties: UserInfo):Identity

Parameters

UserInfo properties
    An object containing the properties for the new user.

Returns

The created user's Identity.

Remarks

The properties object is a JavaScript object that can contain various user properties. Not all properties are required; only the properties specified in this object will be used to create the user.

Creating a user with a password using the default eMakina organization provider:

1
2
3
4
var user = $Membership.CreateUser({
    id : '[email protected]',
    password : 'myPassword'
});

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

See Also