Accepts a list of user IDs as a repeated query parameter and returns the matchingDocumentation 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 records as a JSON array. This endpoint is called internally by msvc-cursos via OpenFeign whenever course details are fetched and the service needs to hydrate the enrolled-student list with full user objects. It can also be called directly for batch user lookups. A valid OAuth2 Bearer token is required — the endpoint falls under the .anyRequest().authenticated() rule in SecurityConfig, meaning any valid JWT grants access regardless of scope.
Base URL: http://localhost:8001Gateway URL:
http://localhost:8090/api/usuarios
Endpoint
Request
Headers
| Header | Value |
|---|---|
Authorization | Bearer <access_token> |
Query Parameters
A comma-separated list of user IDs to retrieve. At least one ID must be provided. IDs that do not match any existing user are silently omitted from the result — no error is raised for missing IDs.Example:
?ids=1,2,3Response
200 OK
Returns a JSON array ofUsuario objects whose id values match those supplied in the ids parameter. Users whose IDs are not found are silently omitted from the array.
Auto-generated primary key of the user.
The user’s display name.
The user’s unique email address.
The BCrypt-encoded password hash stored for the user.
Example
Request
200 Response
Partial Match Response
If ID99 does not exist, only the matching records are returned — no error is raised: