Returns the lead’s manual-log entries for a single channel (logCall, logEmail or logText), paginated via offset+limit or cursor (currentId).
Notes:
curl --request GET \
--url https://api.lofty.com/v1.0/logType \
--header 'Authorization: <authorization>'{
"logType": [
{
"id": 563172647619608,
"leadId": 100001,
"leadPhoneNumber": "5865865860",
"callingOutcome": "VoiceMessage",
"content": "Discussed Austin inventory, will send pre-approval doc tomorrow.",
"createTime": "2026-04-22 10:15:30",
"outboundOrInbound": "outbound",
"isPin": false,
"agentId": 100234,
"emailSubject": "Follow-up on Austin listings",
"toEmail": "sarah.johnson@example.com",
"fromEmail": "agent@lofty.com"
}
]
}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 whose manual logs to return.
x >= 1Channel filter. Case-sensitive.
logCall, logEmail, logText Zero-based index of the first entry to return. Values < 0 are silently reset to 0. Ignored when currentId > 0.
x >= 0Number of entries to return per page. Values outside [1, 1000] are silently reset to 10. offset + limit must not exceed 20000.
1 <= x <= 1000This parameter is used for page turning. When searching by ID is invoked, the interface would starts from this ID, and retrieve data sequentially. It is recommended to use this parameter as a replacement for offset to turn the page within the limit.
Sort field. 'createTime' orders by the entry's logged time; 'id' orders by the entry's ID. Ignored in cursor mode.
createTime, id Sort direction. 'asc' returns oldest first; 'desc' returns newest first.
asc, desc Page of manual log entries for the requested channel.
Wrapped response for GET /v1.0/logType. The manual log entries are returned under the 'logType' key.
Manual log entries on this page, ordered by the request's sort and order parameters.
Show child attributes
curl --request GET \
--url https://api.lofty.com/v1.0/logType \
--header 'Authorization: <authorization>'{
"logType": [
{
"id": 563172647619608,
"leadId": 100001,
"leadPhoneNumber": "5865865860",
"callingOutcome": "VoiceMessage",
"content": "Discussed Austin inventory, will send pre-approval doc tomorrow.",
"createTime": "2026-04-22 10:15:30",
"outboundOrInbound": "outbound",
"isPin": false,
"agentId": 100234,
"emailSubject": "Follow-up on Austin listings",
"toEmail": "sarah.johnson@example.com",
"fromEmail": "agent@lofty.com"
}
]
}