---
title: "Get a manual log entry by ID"
method: GET
path: "/v1.0/logType/{logTypeId}"
tags: ["Lead Manual Log"]
---

# Get a manual log entry by ID

`GET /v1.0/logType/{logTypeId}`

Returns a single manual log entry by its ID.

Returns 404 RESOURCE_NOT_EXIST when:
- The ID does not exist or has been deleted.
- The ID exists but its logType is not one of logCall, logEmail or logText.

An ID returned by POST /v1.0/logType may briefly return 404 here until the asynchronous write has been applied.

## Path parameters

- `logTypeId` integer, required

## Headers

- `Authorization` string, required

## Response `200`

Manual log entry retrieved successfully.

- LogTypeSingleResponse — Wrapped response for GET /v1.0/logType/{id} and POST /v1.0/logType. The manual log entry is returned under the 'logType' key.
  - `logType` LogTypeResponse — Manual log entry.
    - `id` integer — ID of the manual log entry.
    - `leadId` integer — ID of the lead this entry belongs to.
    - `leadPhoneNumber` string — Phone number associated with the call. Only populated for logCall entries.
    - `callingOutcome` 'Talked' | 'VoiceMessage' | 'NoAnswer' | 'BadNumber' | 'DNCNumber' | 'DNCContact' — Outcome of the call. Only populated for logCall entries.
    - `content` string — Body of the log entry: call notes, email body, or SMS content.
    - `createTime` string — Time the entry was logged, formatted as 'yyyy-MM-dd HH:mm:ss' in UTC.
    - `outboundOrInbound` 'outbound' | 'inbound' — Direction of the communication from the agent's point of view. 'outbound' = agent -> lead; 'inbound' = lead -> agent.
    - `isPin` boolean — Whether this entry is pinned to the top of the lead's timeline.
    - `agentId` integer — User ID of the agent who created the entry.
    - `emailSubject` string — Email subject. Only populated for logEmail entries.
    - `toEmail` string — Recipient email address. Only populated for logEmail entries.
    - `fromEmail` string — Sender email address. Only populated for logEmail entries.

## Other responses

- `401` — Missing or invalid authentication token.
- `404` — Entry not found, already deleted, or not a manual log (business code 20007 RESOURCE_NOT_EXIST).
- `500` — Internal server error.

---

[API](https://skmtc.dev/lofty/apis/lofty-service-open-apis.md) · [All operations](https://skmtc.dev/lofty/apis/lofty-service-open-apis/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/lofty/lofty-service-open-apis/revisions/23e640467118/schema)
