Listar comentarios
GET
/api/v1/tasks/{taskId}/commentsLectura (cualquier key)El hilo completo de una tarea, del más antiguo al más nuevo.
Request
curl https://planely.dev/api/v1/tasks/9b2f6c3a-…/comments \
-H "Authorization: Bearer $PLANELY_API_KEY"200 OK
{
"comments": [
{
"id": "5cc2…",
"taskId": "9b2f…",
"body": "Desplegado en staging ✅",
"author": { "id": "a1b2…", "name": "Marta" },
"authorName": "Marta",
"createdAt": "2026-07-25T11:40:12.000Z",
"updatedAt": "2026-07-25T11:40:12.000Z"
}
]
}