# Login Link Generation Allows generation of a link which logs a user into Passolution website directly and redirects to provided page. The generated link is only valid for 30 seconds as it is supposed to be consumed directly. Using account access token, you can generate login link of any user of the account: text .../auth/login/generate_link?page=/&username=user@example.com If you have user access token, you can generate login link for user directly: .../auth/login/generate_link?page=/ Endpoint: GET /auth/login/generate_link Version: 2.0.0 Security: oAuth, bearerAuth ## Query parameters: - `page` (string) Page to redirect to after logging in the user. Example: "/" - `username` (string) Username to generate login link for. Only allowed when using account access token. Example: "user@example.com" ## Response 200 fields (application/json): - `username` (string) Username of user the login link belongs to. Example: "user@example.com" - `link` (object) - `link.url` (string) Example: "https://web.passolution.eu/auth/login/{generated-token}?user=user@example.com&page=/" - `link.token` (string) Example: "{generated-token}" - `requestid` (string) Unique Request ID identifying this request. - `responsetime` (number) Time taken to generate response. ## Response 401 fields