The list endpoint returns a lightweight summary of every project the authenticated user can access. A user appears in results as the registered owner (viaDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/Taykl12/Classify/llms.txt
Use this file to discover all available pages before exploring further.
proyecto_profesor), as an enrolled member (via grupo_estudiante), or as an assigned professor (via proyecto_profesor_asignado). Projects where the user has none of these roles are excluded entirely. Use the detail endpoint to fetch the full configuration of any specific project.
Endpoint
Request
No request body or query parameters are required. The caller’s identity is resolved from the bearer token.Headers
| Header | Value |
|---|---|
Authorization | Bearer <token> |
Example
Response
Returns 200 OK with a JSON array of project list items. The array is empty when the user belongs to no projects.Response Fields
Unique identifier for the project, derived from
id_grupo cast to string.Human-readable project name (
nombre_proyecto).Short description of the project. Empty string (
"") when no description has been set.Current lifecycle state of the project.
"Abierto" means the project is active and accepting work; "Cerrado" means it has been concluded.Whether the authenticated user has marked this project as a favorite. Favorites appear in the dashboard carousel.
Creation date formatted as
DD/MM/YYYY (e.g. "01/09/2024"), derived from fecha_creacion.Supplementary scope notes (
notas_alcance). Empty string ("") when not set.Whether the pre-project document has been validated by the assigned professor (
anteproyecto_validado).Example Response
Error Responses
| Status | Description |
|---|---|
401 Unauthorized | Missing or invalid bearer token. |