Returns tasks assigned to the caller, sorted by startTime descending. Supports cursor-based pagination via currentId (offset) + limit.
Notes:
curl --request GET \
--url https://api.lofty.com/v2.0/tasks/my-tasks \
--header 'Authorization: <authorization>'{
"tasks": [
{
"id": 123,
"leadId": 123,
"creatorId": 123,
"content": "<string>",
"type": "<string>",
"startAt": "<string>",
"endAt": "<string>",
"timeZoneCode": "America/Los_Angeles",
"allDay": false,
"finishFlag": true,
"overdueFlag": true,
"finishTime": "<string>",
"createTime": "<string>",
"lastUpdate": "<string>",
"leadName": "<string>",
"leadEmail": "<string>",
"leadPhone": "<string>",
"leadFirstName": "<string>",
"leadLastName": "<string>",
"reminderType": 123,
"assignedRole": "<string>",
"assignedUser": "<string>",
"teamId": 123,
"subject": "<string>",
"body": "<string>",
"assignedUserId": 123,
"pipelineId": 123,
"queryInfo": "<string>",
"leadUserId": 123,
"queryId": 123,
"address": "123 Main St, Los Angeles, CA"
}
]
}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.
Bearer [access_token]
User ID to query tasks for. Defaults to the current authenticated user if not provided.
Cursor-based pagination anchor. Pass the last returned item's id to fetch the next page. Default 0 (start from beginning).
Page size, 1–100. Default 10.
IANA timezone code (e.g. 'America/New_York'). If not provided, falls back to the user's configured timezone.
Tasks assigned to the caller.
Wrapped response for GET /v2.0/tasks and GET /v2.0/tasks/my-tasks. Task entries are returned under the 'tasks' key.
Tasks and / or appointments matching the query.
Show child attributes
curl --request GET \
--url https://api.lofty.com/v2.0/tasks/my-tasks \
--header 'Authorization: <authorization>'{
"tasks": [
{
"id": 123,
"leadId": 123,
"creatorId": 123,
"content": "<string>",
"type": "<string>",
"startAt": "<string>",
"endAt": "<string>",
"timeZoneCode": "America/Los_Angeles",
"allDay": false,
"finishFlag": true,
"overdueFlag": true,
"finishTime": "<string>",
"createTime": "<string>",
"lastUpdate": "<string>",
"leadName": "<string>",
"leadEmail": "<string>",
"leadPhone": "<string>",
"leadFirstName": "<string>",
"leadLastName": "<string>",
"reminderType": 123,
"assignedRole": "<string>",
"assignedUser": "<string>",
"teamId": 123,
"subject": "<string>",
"body": "<string>",
"assignedUserId": 123,
"pipelineId": 123,
"queryInfo": "<string>",
"leadUserId": 123,
"queryId": 123,
"address": "123 Main St, Los Angeles, CA"
}
]
}