Skip to main content
GET
/
v1.0
/
logType
List manual logs of a lead
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.

Headers

Authorization
string
required

Bearer [access_token]

Query Parameters

leadId
integer<int64>
required

ID of the lead whose manual logs to return.

Required range: x >= 1
logType
enum<string>
required

Channel filter. Case-sensitive.

Available options:
logCall,
logEmail,
logText
offset
integer<int32>
default:0

Zero-based index of the first entry to return. Values < 0 are silently reset to 0. Ignored when currentId > 0.

Required range: x >= 0
limit
integer<int32>
default:10

Number of entries to return per page. Values outside [1, 1000] are silently reset to 10. offset + limit must not exceed 20000.

Required range: 1 <= x <= 1000
currentId
integer<int64>

This 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
enum<string>
default:createTime

Sort field. 'createTime' orders by the entry's logged time; 'id' orders by the entry's ID. Ignored in cursor mode.

Available options:
createTime,
id
order
enum<string>
default:asc

Sort direction. 'asc' returns oldest first; 'desc' returns newest first.

Available options:
asc,
desc

Response

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.

logType
object[]

Manual log entries on this page, ordered by the request's sort and order parameters.