Skip to main content
GET
/
v1.0
/
tasks
List Tasks (V1)
curl --request GET \
  --url https://api.lofty.com/v1.0/tasks \
  --header 'Authorization: <authorization>'
{
  "taskList": [
    {
      "id": 563172647619608,
      "leadId": 100001,
      "creatorId": 100234,
      "content": "Send an email to my lead",
      "type": "Call",
      "deadline": "2026-04-22 17:00:00",
      "finishTime": "2026-04-22 16:30:00",
      "createTime": "2026-04-20 09:00:00",
      "lastUpdate": "2026-04-20 09:00:00",
      "deleteFlag": false,
      "finishFlag": false,
      "overdueFlag": false,
      "leadName": "Alice Johnson",
      "leadEmail": "alice@example.com",
      "leadPhone": "+14155550199",
      "leadFirstName": "Alice",
      "leadLastName": "Johnson",
      "reminderType": 0,
      "assignedRole": "Agent",
      "assignedUser": "Alice Johnson",
      "teamId": 12345,
      "subject": "Follow-up on Austin listings",
      "body": "Discussed Austin inventory last week; sending the pre-approval doc now.",
      "assignedUserId": 100234,
      "pipelineId": 12345,
      "queryInfo": "<string>",
      "leadUserId": 100001,
      "queryId": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developer.lofty.com/llms.txt

Use this file to discover all available pages before exploring further.

Headers

Authorization
string
required

Bearer [access_token]

Query Parameters

leadId
integer<int64>
required

ID of the lead whose tasks to return.

Required range: x >= 1

Response

Tasks for the lead.

Wrapped response for GET /v1.0/tasks. Task entries are returned under the 'taskList' key.

taskList
object[]

Tasks attached to the lead.