parent_task_id.
Task object
| Field | Type | Description |
|---|---|---|
id | integer | Unique task ID. |
title | string | Task title. |
description | string | null | Optional description. |
status | integer | 1 todo · 2 in progress · 3 completed · 4 in review |
priority | integer | 1 low · 2 medium · 3 high |
due_date | string | null | ISO 8601 due date. |
start_date | string | null | ISO 8601 start date. |
lead_id | integer | null | Linked lead ID. |
parent_task_id | integer | null | Parent task ID for subtasks. |
created_at | string | ISO 8601 creation timestamp. |
Endpoints
List tasks
GET /tasksGet task
GET /tasks/{id}Create task
POST /tasksUpdate task
PUT /tasks/{id}Delete task
DELETE /tasks/{id}