POST /api/auth/login
Log in to get a JWT token.
POST /api/auth/register
Register a new user.
GET /api/auth/user
Get the currently authenticated user.
POST /api/auth/change-password
Change the password for the current user.
Login
Authenticates a user and returns a JWT token along with user details.- Endpoint:
/api/auth/login
- Method:
POST
- Body:
username
(string, required): The user’s username.password
(string, required): The user’s password.
- Request Example:
- Success Response:
Register
Registers a new user and returns a JWT token.- Endpoint:
/api/auth/register
- Method:
POST
- Body:
username
(string, required): The desired username.password
(string, required): The desired password (must be at least 6 characters).isAdmin
(boolean, optional): Whether the user should have admin privileges.
- Request Example:
- Success Response:
Get Current User
Retrieves the profile of the currently authenticated user.- Endpoint:
/api/auth/user
- Method:
GET
- Authentication: Bearer Token required.
- Success Response:
Change Password
Allows the authenticated user to change their password.- Endpoint:
/api/auth/change-password
- Method:
POST
- Authentication: Bearer Token required.
- Body:
currentPassword
(string, required): The user’s current password.newPassword
(string, required): The desired new password (must be at least 6 characters).
- Request Example:
- Success Response: