Skip to main content
A task can be standalone or linked to a lead. Tasks support a parent/child hierarchy via parent_task_id.

Task object

FieldTypeDescription
idintegerUnique task ID.
titlestringTask title.
descriptionstring | nullOptional description.
statusinteger1 todo · 2 in progress · 3 completed · 4 in review
priorityinteger1 low · 2 medium · 3 high
due_datestring | nullISO 8601 due date.
start_datestring | nullISO 8601 start date.
lead_idinteger | nullLinked lead ID.
parent_task_idinteger | nullParent task ID for subtasks.
created_atstringISO 8601 creation timestamp.

Endpoints

List tasks

GET /tasks

Get task

GET /tasks/{id}

Create task

POST /tasks

Update task

PUT /tasks/{id}

Delete task

DELETE /tasks/{id}