Skip to main content
GET
/
v1.0
/
systemLogs
System Logs
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.

Headers

Authorization
string
required

Bearer [access_token]

Query Parameters

leadId
integer<int64>
required

ID of the lead.

Required range: x >= 1
startTime
integer<int64>
default:-1

Inclusive lower bound (milliseconds since Unix epoch, UTC).

endTime
integer<int64>
default:-1

Inclusive upper bound (milliseconds since Unix epoch, UTC).

pageNumber
integer<int32>
default:0

0-based page index.

Required range: x >= 0
pageSize
integer<int32>
default:100

Number of entries per page.

Required range: 1 <= x <= 1000

Response

System log page retrieved successfully.

Paginated response wrapping the system log timeline entries.

hasMore
enum<integer>

Whether more pages exist after the current one. 1 = more entries, 0 = last page.

Available options:
0,
1
Example:

1

timeLines
object[]

Timeline entries on this page, sorted by timelineTime descending (newest first).