Register with application

Supports both json and form request types

post/register

Query parameters

nextstring

URL to redirect to on successful registration. Ignored for json request.

Request body

emailstring required

user identifier. This is by default an email address, but can be any (unique) field that is part of the User model and is defined in the USER_IDENTITY_ATTRIBUTES configuration variable. It will also match against numeric User model fields.

passwordstring required

Password

Response

Register response

csrf_tokenstring

Session CSRF token

Example response

{
  "user": {
    "id": 42
  }
}

Changes