All API requests must be authenticated using a Bearer Token in the header.
Authorization: Bearer YOUR_API_KEY
Manage tasks, update statuses, and assign members.
/api/v1/tasks
Retrieve a list of all tasks for the authenticated user.
[
{
"id": "task_123",
"title": "Design Homepage",
"status": "in_progress",
"priority": "high"
}
]
/api/v1/tasks
Create a new task in a specific project.
| project_id | Required. UUID of the project. |
|---|---|
| title | Required. Task title. |