API Reference/Documentation
GitHubDashboard
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

ParameterTypeDescription
titlereq
stringTask title
description
stringTask description
dueAt
stringISO 8601 due date
leadId
stringAssociated lead ID
opportunityId
stringAssociated opportunity ID
assignedTo
stringAssigned user ID
type
string
callemailmeetingnoteother
Task type
Request
HTTP
http
POST https://api.leadron.io/v1/tasks
X-API-Key: ldr_live_sk_a1b2c3d4e5f6g7h8i9j0
Content-Type: application/json
Body
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"
  }
}

List Tasks

Get Task

Update Task

Complete & Reopen

Assign Task

Calendar & Events

Activities

Delete & Subtasks

Availability

Reminders & Escalation