Documentation Index
Fetch the complete documentation index at: https://mintlify.com/estebansalas94/Prueba-Soporte/llms.txt
Use this file to discover all available pages before exploring further.
This is a form-based authentication endpoint. It uses Laravel session cookies, not API tokens. All subsequent authenticated requests rely on the session cookie returned by this endpoint.
Endpoint
guest — only accessible when the user is not already authenticated. Authenticated users will be redirected away.
Request
Parameters
The user’s email address. Must be a valid email format.
The user’s password.
When
true, extends the session lifetime so the user remains logged in across browser restarts. Defaults to false.Response
This endpoint does not return a JSON body. It responds with HTTP redirects.| Outcome | Redirect |
|---|---|
| Successful authentication | Intended URL (defaults to /tasks/index) |
| Validation failure | Back to /login with errors in the session |
| Rate limit exceeded (5 failed attempts) | Back to /login with a throttle error on email |
Set-Cookie header is returned containing the encrypted Laravel session cookie. Include this cookie in all subsequent requests to maintain the authenticated session.
Rate Limiting
Failed login attempts are rate-limited per email address and IP address. After 5 consecutive failed attempts, further requests are blocked until the lockout period expires. The error message on theemail field will indicate how many seconds remain.
Example
-c cookies.txt flag saves the session cookie to a file for use in subsequent requests.
Validation Errors
When validation fails, the server redirects back to/login and flashes errors into the session. When calling this endpoint from a JavaScript client (with Accept: application/json), a 422 Unprocessable Entity response is returned instead:
email field: