Returns a single manual log entry by its ID.
Returns 404 RESOURCE_NOT_EXIST when:
An ID returned by POST /v1.0/logType may briefly return 404 here until the asynchronous write has been applied.
curl --request GET \
--url https://api.lofty.com/v1.0/logType/{logTypeId} \
--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 manual log entry to retrieve.
x >= 1Manual log entry retrieved successfully.
Wrapped response for GET /v1.0/logType/{id} and POST /v1.0/logType. The manual log entry is returned under the 'logType' key.
Manual log entry.
Show child attributes
curl --request GET \
--url https://api.lofty.com/v1.0/logType/{logTypeId} \
--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"
}
}