## Login `client.users.login(UserLoginParamsquery?, RequestOptionsoptions?): UserLoginResponse` **get** `/user/login` Logs user into the system ### Parameters - `query: UserLoginParams` - `password?: string` The password for login in clear text - `username?: string` The user name for login ### Returns - `UserLoginResponse = string` ### Example ```typescript import JustinDocsTest from 'justin-docs-test'; const client = new JustinDocsTest({ apiKey: 'My API Key', }); const response = await client.users.login(); console.log(response); ```