Endpoint
Description
Retrieves all data associated with an employee evaluation, including personal information, family details, academic background, work history, economic data, references, and document upload status. The response structure varies based on the evaluation type (Permanencia vs. Nuevo Ingreso).Authentication
This endpoint requires session-based authentication via theisLoggedIn middleware. Users must be authenticated before accessing this endpoint.
URL Parameters
The encrypted evaluation ID obtained from the Create Evaluation endpoint. This value is generated using
ncrypt-js with the key "key_cecc".Response Structure
The endpoint renders a view with comprehensive evaluation data. The data structure includes:Core Evaluation Data
Core evaluation information
Section Data Collections
Personal information data (latest active record)
Family member information (latest active record)
Academic background and education history
Work history and career trajectory
- For Permanencia (tipo_eval = 1): Uses
tbl_dgo_trayectoria - For Nuevo Ingreso (tipo_eval = 2): Uses
tbl_dgo_trayectoriani
Economic and financial information (latest active record)
Personal and professional references (latest active record)
Document Status
List of required documents for this evaluation type
List of optional documents for this evaluation type
Progress Tracking
Number of completed data sections (out of 6 total sections)
- Personal Data
- Family Data
- Academic Data
- Work History
- Economic Data
- References
Formatted completion percentage for data capture (e.g., “83.33”)
Indicates if evaluation is ready for review. Present only when all requirements are met:
- Permanencia: All 6 sections complete + 5 required documents uploaded
- Nuevo Ingreso: All 6 sections complete + 7 required documents uploaded
Evaluation Type Differences
Permanencia (tipo_eval = 1)
For permanent employee evaluations, the system requires:
- 6 completed data sections
- 5 mandatory document uploads
Required Documents (Permanencia)
Birth certificate (documentoID: 10)
Official identification (documentoID: 11)
Proof of address (documentoID: 12)
Education certificates (documentoID: 13)
Proof of income (documentoID: 14)
Optional Documents (Permanencia)
Bank account statements (documentoID: 15)
Military service card (documentoID: 16)
Credit bureau report (documentoID: 17)
Nuevo Ingreso (tipo_eval = 2)
For new hire evaluations, the system requires:
- 6 completed data sections
- 7 mandatory document uploads (includes motivation letter)
Required Documents (Nuevo Ingreso)
Birth certificate (documentoID: 1)
Official identification (documentoID: 2)
Proof of address (documentoID: 5)
Education certificates (documentoID: 6)
Military service card (documentoID: 7)
Proof of income (documentoID: 8)
Letter of motivation for joining (from
tbl_dgo_motivos_ingresos)Credit bureau report (documentoID: 17)
Optional Documents (Nuevo Ingreso)
Bank account statements (documentoID: 9)
Common Optional Documents (Both Types)
Department account (documentoID: 19)
Credit bureau (documentoID: 17)
Spouse payment proof (documentoID: 20)
Property facade photo (documentoID: 28)
Property documentation (documentoID: 29)
Weapon permit (documentoID: 30)
Vehicle registration card (documentoID: 31)
Legal proceedings documentation (documentoID: 32)
Informal activities declaration (documentoID: 33)
Employee photo (documentoID: 34)
Additional Fields
Set to
true for Permanencia evaluations (tipo_eval = 1)Set to
true for Nuevo Ingreso evaluations (tipo_eval = 2)Gender flag:
true if employee gender is “MUJER” (female)Database Operations
Primary Queries
Example Request
Completion Criteria
Ready for Review (Permanencia)
- All 6 data sections completed (Personal, Family, Academic, Work, Economic, References)
- Birth certificate uploaded
- Official ID uploaded
- Proof of address uploaded
- Education certificates uploaded
- Proof of income uploaded
Ready for Review (Nuevo Ingreso)
- All 6 data sections completed (Personal, Family, Academic, Work, Economic, References)
- Birth certificate uploaded
- Official ID uploaded
- Proof of address uploaded
- Education certificates uploaded
- Military service card uploaded
- Proof of income uploaded
- Letter of motivation submitted
- Credit bureau report uploaded
Important Notes
The progress percentage (
ProcessCaptureFormat) is calculated as: (TotalCaptura / 6) * 100Related Endpoints
- Create Evaluation - Create or resume an evaluation
- Finalize Evaluation - Mark evaluation as complete