Engagement
Tasks
Manage tasks, appointments, follow-ups, calendar events, reminders, and activity logs. Tasks can be linked to leads and opportunities.
Task CRUD
Create, list, update, complete tasks
Calendar
Unified calendar view, events, availability
Activities
Log activities, reminders, escalation
Create Task
Body Parameters
| Parameter | Type | Description |
|---|---|---|
titlereq | string | Task title |
description | string | Task description |
dueAt | string | ISO 8601 due date |
leadId | string | Associated lead ID |
opportunityId | string | Associated opportunity ID |
assignedTo | string | Assigned user ID |
type | stringcallemailmeetingnoteother | Task type |
Request
HTTP
http
POST https://api.leadron.io/v1/tasks
X-API-Key: ldr_live_sk_a1b2c3d4e5f6g7h8i9j0
Content-Type: application/jsonBody
json
1
2
3
4
5
6
{
"title": "Follow up with Jane",
"type": "call",
"leadId": "6789abcdef012345",
"dueAt": "2026-02-10T14:00:00.000Z"
}Response201Created
201 Response
json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"success": true,
"status": 201,
"message": "Resource created successfully",
"data": {
"id": "task_001",
"title": "Follow up with Jane",
"type": "call",
"status": "pending",
"dueAt": "2026-02-10T14:00:00.000Z",
"createdAt": "2026-02-08T14:30:00.000Z"
},
"meta": {
"timestamp": "2026-02-08T14:30:00.000Z",
"version": "v1"
}
}