...
In order to create a new user, submit a POST
request to /api/users
.
Request
Key | Description |
---|---|
| The new user's email address (will be used as login username). |
| The new user's password (must be at least 6 characters long). |
If the request entity is invalid (missing field(s), password < 6 characters) or a user with that email address already exists, the API responds with 400 Bad Request
.