Returns system-event timeline entries for the lead, sorted by timelineTime descending (newest first), with offset-based pagination.
Authorization: the authenticated user must be the lead’s owner or the shared agent; otherwise 403 is returned.
curl --request GET \
--url https://api.lofty.com/v1.0/systemLogs \
--header 'Authorization: <authorization>'{
"hasMore": 1,
"timeLines": [
{
"id": 5000123456789,
"leadId": 100001,
"agentId": 200001,
"timelineType": 38,
"timelineTime": 1735689600000,
"createTime": 1735689601234,
"fromId": 200001,
"fromType": 1,
"toId": 100001,
"toType": 2,
"leadFullName": "Sarah Johnson",
"fromFirstName": "Jane",
"fromLastName": "Doe",
"toFirstName": "Sarah",
"toLastName": "Johnson",
"sticky": false,
"canSticky": false,
"content": "<string>",
"updateTime": 1735689601234
}
]
}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]
ID of the lead.
x >= 1Inclusive lower bound (milliseconds since Unix epoch, UTC).
Inclusive upper bound (milliseconds since Unix epoch, UTC).
0-based page index.
x >= 0Number of entries per page.
1 <= x <= 1000System log page retrieved successfully.
Paginated response wrapping the system log timeline entries.
curl --request GET \
--url https://api.lofty.com/v1.0/systemLogs \
--header 'Authorization: <authorization>'{
"hasMore": 1,
"timeLines": [
{
"id": 5000123456789,
"leadId": 100001,
"agentId": 200001,
"timelineType": 38,
"timelineTime": 1735689600000,
"createTime": 1735689601234,
"fromId": 200001,
"fromType": 1,
"toId": 100001,
"toType": 2,
"leadFullName": "Sarah Johnson",
"fromFirstName": "Jane",
"fromLastName": "Doe",
"toFirstName": "Sarah",
"toLastName": "Johnson",
"sticky": false,
"canSticky": false,
"content": "<string>",
"updateTime": 1735689601234
}
]
}