Skip to main content
GET
/
tasks
/
project
/
{projectId}
curl http://localhost:3000/api/v1/tasks/project/clxyz456 \
  -H "Authorization: Bearer <token>"
[
  {
    "id": "clxyz789",
    "title": "Implement login",
    "status": "TODO",
    "priority": "HIGH",
    "projectId": "clxyz456"
  }
]

Path Parameters

projectId
string
required
Project ID.
curl http://localhost:3000/api/v1/tasks/project/clxyz456 \
  -H "Authorization: Bearer <token>"
[
  {
    "id": "clxyz789",
    "title": "Implement login",
    "status": "TODO",
    "priority": "HIGH",
    "projectId": "clxyz456"
  }
]