Looks up aDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/Miguel-Rodriguez15/msvc/llms.txt
Use this file to discover all available pages before exploring further.
Usuario by their email address and returns the full record — including the BCrypt-encoded password hash. This endpoint is designed for exclusive use by the msvc-auth authorization server, which calls it during the OAuth2 token-issuance flow to retrieve the stored credential for password verification. No OAuth2 token is required to call this endpoint.
Base URL: http://localhost:8001Gateway URL:
http://localhost:8090/api/usuarios (should not be publicly routed)
Endpoint
Request
Headers
| Header | Value |
|---|---|
Content-Type | application/json |
Query Parameters
The email address of the user to look up. Must exactly match a stored email (case-sensitive comparison at the database level).
Response
200 OK
Returns the fullUsuario object, including the BCrypt-encoded password hash. This value is consumed by msvc-auth to verify the user’s submitted plaintext password.
The auto-generated primary key of the user.
The user’s display name.
The user’s unique email address.
The BCrypt-encoded password hash (e.g.
$2a$10$...). The original plaintext password is never stored or returned.404 Not Found
Returned when no user is registered with the providedemail. The response body is empty.