Authenticates an existing user account using an email address and password. Both student and general user accounts use this endpoint. On success, a JWT login token is returned. This token identifies the user in all subsequent authenticated requests — pass it in theDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/Daniel-Stojanovski/finkiopendesk/llms.txt
Use this file to discover all available pages before exploring further.
Authorization header as Bearer <token>.
This endpoint is public. No authentication is required.
Request
The email address associated with the account.
The account password.
Response
The response body is a plain JWT login token string. Include it asAuthorization: Bearer <token> in all requests to authenticated endpoints.
A JWT login token encoding the user’s UUID as its subject claim.
Example
Student accounts must be activated via
POST /auth/students/activate before they can log in. Attempting to log in with an inactive student account will fail.