Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Israel-Perez/Nuxt-Secure/llms.txt
Use this file to discover all available pages before exploring further.
Paginated list
GET/api/perfil
Returns a paginated list of profiles. Results are ordered by id descending, with a fixed page size of 5 records.
Query parameters
Page number to retrieve. Defaults to
1.Case-insensitive substring filter applied to
strNombrePerfil. Uses SQL ILIKE '%value%'.Filter by administrator flag. Pass
"true" to return only administrator profiles, "false" to return only non-administrator profiles. Omit to return all profiles regardless of flag.Response
true when the query completes without error.Array of profile objects for the requested page.
Total number of pages available given the current filters and a page size of 5.
Error response
When an unexpected server error occurs the handler catches the exception and returns:500
Examples
Success response
200
Simple list (for dropdowns)
GET/api/perfil/list
Returns all profiles without pagination. Only id and strNombrePerfil are included. Intended for populating select inputs in the UI.
Response
true when the query completes without error.Array of all profile objects.
Error response
When an unexpected server error occurs:500
Examples
Success response
200