User ==== Regular users can be created and updated through the REST API. POST /user/new -------------- Creates a new user with the given details. A password must be provided and it must be at least 8 characters long. Accepted parameters are: - ``email`` (required, string, maximum 255 characters) the user's email - ``password`` (required, string, maximum 255 characters) the user's password - ``firstName`` (optional, string, maximum 64 characters) the user's first name - ``lastName`` (optional, string, maximum 64 characters) the user's last name - ``phone`` (optional, string, maximum 32 characters) the user's mobile number .. note:: Admin users cannot be created through these REST API. Example request: .. code-block:: text POST /user/new .. code-block:: json { "firstName": "Giovanni", "lastName": "Satellite", "email": "giovanni@example.com", "phone": "0123456789", "password": "abc123" } Example response: .. code-block:: json { "firstName": "Giovanni", "lastName": "Satellite", "email": "giovanni@example.com", "phone": "0123456789", "username": "giovanni@example.com" } PUT /user/me ------------ Update the logged in user's data. All details available should be sent on each update. If ``password`` is provided it will be updated, don't send it unless you want to update it. Password must be at least 8 characters long. Accepted parameters are: - ``firstName`` (optional, string, maximum 64 characters) the user's first name - ``lastName`` (optional, string, maximum 64 characters) the user's last name - ``phone`` (optional, string, maximum 32 characters) the user's mobile number - ``password`` (optional, string, maximum 255 characters) the user's password .. tip:: Sending an empty password will cause a validation error. The password must be sent only if the user want to update it. .. note:: Admin users cannot authenticate through the OAuth2 API and therefore they cannot retrieve or edit their details. .. code-block:: text PUT /user/me .. code-block:: json { "firstName": "Giovanni", "lastName": "Satellite", "email": "giovanni@example.com", "phone": "0123456789", "password": "abc456" } Example response: .. code-block:: json { "firstName": "Giovanni", "lastName": "Satellite", "email": "giovanni@example.com", "phone": "0123456789", "username": "giovanni@example.com" } GET /user/me ------------ Retrieve the details of the logged in user. .. note:: Admin users cannot authenticate through the OAuth2 API and therefore they cannot retrieve or edit their details. Example request: .. code-block:: text GET /user/me Example response: .. code-block:: json { "firstName": "Giovanni", "lastName": "Satellite", "email": "giovanni@example.com", "phone": "0123456789", "username": "giovanni@example.com" }