# User Login Authenticates a user and returns a token that must be included in the Authorization header for subsequent requests. Endpoint: POST /Users/login Version: 1.0.0 Security: bearerAuth ## Request fields (multipart/form-data): - `Email` (string, required) Example: "user@example.com" - `Method` (string) Example: "API Call" - `Password` (string, required) Example: "password123" - `UserAgent` (string) Example: "web" ## Response 200 fields (application/json): - `token` (string) JWT token to be used in Authorization header. - `userId` (string) ID of the authenticated user