UserManagerServicesCreateNewUser Method |
Namespace: IngeniuxCMService
public XHRServiceResponseGeneric<CreateNewUserResult> CreateNewUser( SaveUserInput data )
Object containing the details of new User, and the User Groups this User will belong to
{
"data": {
"info": {
"newEntry": true,
"id": "INGENIUX\\developer66",
"name": "Developer 66",
"email": "dev66@ingeniux.com",
"receiveWorkFlowNotificationMail": false,
"integratedMembershipProvider": "",
"password": "",
"readLocales": [],
"writeLocales": []
},
"groups": ["UserGroups/1"]
}
}Basic infomration of newly created User
{
"code": 0,
"error": null,
"message": {
"name": "Developer 66",
"email": "dev66@ingeniux.com",
"receiveWorkFlowNotificationMail": false,
"groupsAffected": {
"added": ["UserGroups\/1"],
"removed": []
},
"integratedMembershipProvider": "",
"lastLoginDate": "",
"pagesCount": 0,
"userId": "INGENIUX\\developer66",
"existing": false
}
}