The processes endpoints expose the catalogue of university admission processes configured in the platform. Use the authenticatedDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/ariellukezz/admision-web/llms.txt
Use this file to discover all available pages before exploring further.
POST /api/get-procesos endpoint to retrieve a full paginated list for administrative integrations, the public GET /api/get-procesos endpoint to retrieve a simplified results-page list, or the lightweight GET /api/get-select-procesos endpoint to populate dropdowns and select menus without requiring a token.
POST /api/get-procesos
Returns a paginated list of admission processes. Supports optional filtering bynivel (education level) and a free-text term that matches against the process name, campus name, modality name, or year.
Authentication: Sanctum Bearer token required.
Request Body (optional filters)
Filter by education level.
1 = undergraduate (pregrado); 2 = continuing education (segundas especialidades). Omit to return all levels.Free-text search term matched against process name, campus (filial) name, modality name, and year.
Example Request
Response — HTTP 200
The response wraps a Laravel paginator inside thedatos key.
Response Fields
true when the query executed successfully.Laravel paginated result object.
Array of admission process objects.
Internal process ID.
Full display name of the admission process.
Process status.
1 = active, 0 = inactive.Academic year.
Cycle number within the year (
1 or 2).URL-friendly identifier used in public enrollment forms.
Enrollment start date (ISO 8601).
Enrollment end date (ISO 8601).
Exam date (ISO 8601). Also returned as
fec_examen.Name of the campus (filial) hosting the process.
Process type (e.g.,
EXAMEN GENERAL, CEPRE).Admission modality name (e.g.,
ORDINARIO, TRASLADO EXTERNO).Education level.
1 = pregrado, 2 = segundas especialidades.Sequential call number within the year (
nro_convocatoria).Short process code used in payment and document references.
First auxiliary date for the process (e.g., first exam day).
Second auxiliary date for the process (e.g., second exam day).
ID of the associated regulation document.
Current page number.
Results per page (fixed at 50).
Total number of processes matching the query.
Results are ordered by
procesos.id DESC, so the most recently created process appears first. Use term to narrow results when integrating with search inputs.GET /api/get-procesos
Returns a simplified list of all undergraduate (nivel = 1) admission processes for use on public results pages. This endpoint requires no authentication and is distinct from the authenticated POST /api/get-procesos endpoint above.
Authentication: None.
Example Request
Response — HTTP 200
Response Fields
true when the query executed successfully.Array of admission process objects ordered by
id DESC. Only processes with nivel = 1 (undergraduate) are included.Internal process ID.
Full display name of the admission process.
URL-friendly identifier.
Academic year.
Process status.
1 = active, 0 = inactive.Enrollment end date (ISO 8601).
ID of the campus (filial) hosting the process.
Exam date (ISO 8601).
Public URL of the linked regulation document (from the joined
reglamento table).First auxiliary date for the process.
Second auxiliary date for the process.
GET /api/get-select-procesos
Returns a lightweight list of active admission processes formatted for use in select/dropdown UI components. Each object containsvalue (the process ID), label (display name), anio, and a human-readable ciclo label.
Authentication: None.