Documentation Index
Fetch the complete documentation index at: https://mintlify.com/estebansalas94/Prueba-Soporte/llms.txt
Use this file to discover all available pages before exploring further.
This endpoint requires an active authenticated session. Unauthenticated requests are redirected to the login page.
Endpoint
Description
Returns a JSON array of all tasks wherecompleted = 0. Completed tasks are permanently filtered out and will not appear in this response. The frontend calls this endpoint on initial page load and after every mutating operation (create, complete, delete).
Query parameters
Optional. Passed by the Vuex
fetchTasks action. Defaults to false. The current controller implementation does not filter on this value — all incomplete tasks are returned regardless. Reserved for future use.Response
Returns a JSON array of task objects. Returns an empty array[] when no incomplete tasks exist.
Response fields
Unique identifier for the task.
ID of the user the task is assigned to.
Short title of the task. Maximum 255 characters.
Detailed description of the task. Maximum 500 characters.
Completion flag. Always
0 in this response — completed tasks are excluded.ISO 8601 timestamp of when the task was created.
ISO 8601 timestamp of when the task was last updated.