POST /register

Register and saves the user to the database.

Full path

/register

Headers

Body

Key | JSON Value type | Comment | Required ---|---|--- username|String|The username to be registered|Yes password|String|The password of the user|Yes

Returns

Status code Data Comments
200 null User created successfully.
400 null Username already exists.

Example

Request

POST /register

Request body

{
    "username": "foo",
    "password": "bar"
}

Response body

{
    "status": 201,
    "message": "User foo has been created.",
    "error": null,
    "data": null
}