Task Structure
Creating Tasks
Create a task for a lead:Listing Tasks
Get tasks with filtering:Updating Tasks
Update task status or details:Task Comments
Add comments to tasks:Comment Structure
Priority Levels
| Priority | Use Case |
|---|---|
urgent | Immediate action required |
high | Important, complete soon |
medium | Standard priority |
low | Nice to have, when time permits |
Status Workflow
Time Tracking
Log time spent on tasks:API Endpoints
| Method | Endpoint | Description |
|---|---|---|
GET | /api/v1/tasks | List all tasks |
POST | /api/v1/tasks | Create task |
GET | /api/v1/tasks/{id} | Get task |
PUT | /api/v1/tasks/{id} | Update task |
DELETE | /api/v1/tasks/{id} | Delete task |
GET | /api/v1/tasks/{id}/comments | List comments |
POST | /api/v1/tasks/{id}/comments | Add comment |
GET | /api/v1/leads/{leadId}/tasks | Tasks for lead |