TheDocumentation 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.
/api/dashboard/pending endpoint aggregates every task with a status of Pendiente or En Progreso across all projects accessible to the authenticated user. Tasks are returned ordered by their deadline (fecha_limite) in ascending order so the most time-sensitive items appear first. Tasks without a deadline are sorted to the end of the list. This endpoint is suited for driving a global task queue or dashboard urgency feed.
Authentication
All requests must include a valid Bearer token in theAuthorization header.
Request
Response
Returns a JSON array of task objects ordered bydeadline ascending (nulls last).
Response fields
Unique identifier for the task.
Title of the task.
Optional longer description of the task.
null when not set.Task priority level. One of
"Alta", "Media", or "Baja".Current task status. One of
"Pendiente" or "En Progreso".Identifier of the project this task belongs to.
Display name of the project this task belongs to.
ISO 8601 date string representing the task’s due date (e.g.
"2024-09-15"),
or null if no deadline has been set.Example response
[]) is returned when there are no pending or in-progress tasks.
Code examples
Error responses
| Status | Meaning |
|---|---|
401 | Missing or invalid Authorization header / token. |
500 | Unexpected server error while querying the database. |