Skip to content

Users

This endpoint is primarily used for manipulating the currently logged on user. Administrators have broader access, e.g. for creating users.

GET /api/user

Get the currently logged on user.

PUT /api/user

Update the user specified in the request object. Non-admin users can only update their own user, whereas the

Request

A JSON object with the properties to update.

POST /api/user/password/change

Change the password for the currently logged on user.

Request

An object with the new password (repeated) and the current password:

{
"password": "string", // new password
"repeatPassword": "string", // repeated new password
"confirmPassword": "string" // current password
}