Skip to content

User Registration

Description

The user registration API creates a user account in your application. A registration request must provide a user object as a collection of key/value properties. The collection must contain a property marked as identity as well as the "password" property. The default identity property is "email", however, it can be changed in Backendless Console. Additionally, the "email" property is required if your Backendless application is configured to confirm email addresses for the registered users.

When this API is used to convert a guest user account to a regular registered user, the BackendlessUser argument must have the objectId property set to the value returned from the Guest Login API.

Method

Non-Blocking API

Backendless.UserService.register( user, new AsyncCallback<BackendlessUser>() );

Blocking API

public BackendlessUser Backendless.UserService.register( BackendlessUser userObj ) 
                                                  throws BackendlessException;

where:

Argument                Description
user An the BackendlessUser object which contains property values for the account registration. String value.
callback An object which receives either a return value or an error from the server. The return value from the server is the BackendlessUser object with the ID assigned by the server-side.The class must implement the AsyncCallback<String> interface.

Return Value

The BackendlessUser object representing registered user. The "objectId" property contains a value assigned by the server. The registration API does not login the user.

{  
  "objectId" : value,  
  "email" : value,  
  "password" : value,  
  ...  
}

Example

The example below registers a new user with an email "alice@yourmail.com" and password "wonderland".

Non-Blocking API

// do not forget to call Backendless.initApp when your app initializes

BackendlessUser user = new BackendlessUser();
user.setProperty( "email", "alice@yourmail.com" );
user.setPassword( "wonderland" );

Backendless.UserService.register( user, new AsyncCallback<BackendlessUser>()
{
  public void handleResponse( BackendlessUser registeredUser )
  {
    // user has been registered and now can login
  }

  public void handleFault( BackendlessFault fault )
  {
    // an error has occurred, the error code can be retrieved with fault.getCode()
  }
} );

Blocking API

// do not forget to call Backendless.initApp when your app initializes

BackendlessUser user = new BackendlessUser();
user.setProperty( "email", "alice@yourmail.com" );
user.setPassword( "wonderland" );

try
{
  user = Backendless.UserService.register( user );
}
catch( BackendlessException exception )
{
  BackendlessFault fault = exception.getFault();
  // an error has occurred, the error code can be retrieved with fault.getCode()
}

Error Codes

The following errors may occur during User Registration API calls. See the Error Handling section for details on how to retrieve the error code when the server returns an error.

Error Code
Description
2002
Invalid application info (application id or api key)
3009
User registration is disabled for the application
3010
User registration has an unknown property and dynamic properties are disabled for this version of the application
3011
Missing "password" property
3012
Required property is missing
3013
Missing value for the identity property
3014
External registration failed with an error.
3021
General user registration error. Details included with the error message.
3033
User with the same identity already exists
3038
Missing application-id or collection of properties for the registering user
3039
Property "id" cannot be used in the registration call
3040
Email address is in the wrong format
3041
A value for a required property is missing
3043
Duplicate properties in the registration request
8000
Property value exceeds the length limit

Turning Registration Off

User registration can be disabled using the Backendless Console:

  1. Login to the console and select the application.
  2. Click the Users icon in the vertical icon menu on the left.
  3. Click User Registration.

The Registration toggle turns the registration API on or off. When the registration is turned off and a user attempts to register, the system returns error 3009.

registration-togglev4.zoom70

Email Confirmations

Backendless can send out an email requesting new registered users to confirm their email address. This feature can be configured in the Backendless Console:

  1. Log into the console and select the application.
  2. Click the Users icon in the vertical icon menu on the left.
  3. Click User Registration.

email-confirmationv4.zoom70

When email confirmations are enabled (the feature is disabled by default), the "email" user property is required and must contain a value formatted as an email address. When user registers or when you create a user account in the Users database table,  Backendless sends an email to the user with a link they need to click to confirm their email address. To change the text of the email message,  click the Messaging icon in the vertical icon bar in Backendless console and select the EMAILS tab. Use the Confirmation template template.

To resend the confirmation email, use the Resend Email Confirmation API.

When email confirmations are enabled in the app, new registered users will not be able to login until they confirm their email address. For more information see the User Status section of this guide.

When user clicks the confirmation link in the email, Backendless performs various checks and displays a web page informing the user about the status. The web pages can be edited in the Backendless UI Builder. They are available in the FRONTEND section of Backendless Console - make sure to select the system UI Container:

system-ui-container

The following pages are available depending on the status of the link and the user account:

Link/User Status
Page to display
Link expired
Page name: confirmation-expired
conf-expired
User is disabled. This may happen if you modified the user's status to DISABLED. This can be done manually in Backendless Console or with the user status management API.
Page name: confirmation-disabled
conf-disabled
User's email has been confirmed.
Pagge name: confirmation-confirmed
conf-confirmed

If you make any changes to the confirmation pages, make sure to re-publish the system UI Container by clicking the Publish UI Container icon:

publish-ui-container

It is important that the UI Container is published to the system directory located under the web directory:

system-under-web

Codeless Reference

user_service_codeless_register_user

where:

Argument                Description
email Built-in user property used for the Login, Restore Password and other operations. The email is used as a default identity but it can be changed to any other identifier in the Users data table.
password Is a string value which is used to authenticate the user(identity).
return registered user object Optional parameter. When this option is checked, the operation returns the BackendlessUserobject.

Returns the BackendlessUser object representing registered user.

The example below registers a new user "alice@youremail.com" with the password "wonderland" and adds this record to the Users data table. The operation also returns the BackendlessUser object containing user data, since the return registered user object option is checked.

user_service_codeless_example_register_user

The BackendlessUser object will look as shown below after the Codeless logic runs:

user_service_codeless_example_register_user_2