The payment endpoints expose records from theDocumentation 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.
banco_pagos table, which stores payment vouchers received from the university’s banking integration. You can query all payments associated with a given DNI or look up a specific payment by its bank sequence number. Both endpoints are public and require no authentication.
Payment data originates from an external bank API integration and is stored locally in the
banco_pagos table. Only payments recorded after January 1, 2025 are returned. Earlier records are excluded by a hard-coded date filter applied at query time.POST /api/get-pagos-banco
Returns all bank payment vouchers associated with a given applicant DNI. The DNI is extracted from bytes 8–15 (positions 8 to 8+8) of thenum_doc field in the payments table using SUBSTRING(num_doc, 8, 8), which encodes additional bank metadata in the leading characters.
Authentication: None.
Request Body
The applicant’s 8-digit DNI number. The query matches against
SUBSTRING(num_doc, 8, 8).Example Request
Response — HTTP 200
Response Fields
true when the query executed successfully.Array of payment voucher objects matching the given DNI.
Unique bank transaction sequence number.
Applicant DNI extracted from the bank document number field using
SUBSTRING(num_doc, 8, 8).Two-character payment concept code extracted from the
concepto field using SUBSTRING(concepto, 7, 2).Amount paid (as a decimal string).
Payment date in
YYYY-MM-DD format.Payer’s full name as recorded by the bank.
Payment usage status.
0 = unused (available), 1 = applied to a process.Date the voucher was applied to an admission process;
null if unused.ID of the staff user who applied the voucher;
null if unused.ID of the admission process the payment is assigned to;
null if unassigned.Name of the admission process from the joined
procesos table.Modality ID of the linked process.
POST /api/get-pagos-banco-secuencia
Returns the bank payment voucher that matches a specific bank sequence number. Returns an array with one element when found, or an empty array when no match exists. Authentication: None.Request Body
The bank sequence number of the payment voucher to look up (e.g.,
"000987654").Example Request
Response — HTTP 200
Empty result
When no voucher matches the requested sequence number,datos is an empty array: