userRegistrationRequest element

Type: userRegistrationRequest
Namespace: (default namespace)
XML Schema: ns0.xsd
Available Since: 2.0

Example XML

<?xml version="1.0" encoding="UTF-8"?> <userRegistrationRequest> <user> <username>...</username> <fullName>...</fullName> <email>...</email> <validated>...</validated> <locked>...</locked> <password>...</password> <passwordChangeRequired>...</passwordChangeRequired> <permanent>...</permanent> <confirmPassword>...</confirmPassword> <timestampAccountCreation>...</timestampAccountCreation> <timestampLastLogin>...</timestampLastLogin> <timestampLastPasswordChange>...</timestampLastPasswordChange> <previousPassword>...</previousPassword> <assignedRoles>...</assignedRoles> <assignedRoles>...</assignedRoles> <!--...more "assignedRoles" elements...--> <readOnly>...</readOnly> <userManagerId>...</userManagerId> </user> <applicationUrl>...</applicationUrl> </userRegistrationRequest>

Example JSON

{ "user" : { "username" : "...", "fullName" : "...", "email" : "...", "validated" : false, "locked" : false, "password" : "...", "passwordChangeRequired" : false, "permanent" : false, "confirmPassword" : "...", "timestampAccountCreation" : "...", "timestampLastLogin" : "...", "timestampLastPasswordChange" : "...", "previousPassword" : "...", "assignedRoles" : [ "...", ... ], "readOnly" : false, "userManagerId" : "..." }, "applicationUrl" : "..." }