> ## Documentation Index
> Fetch the complete documentation index at: https://docs.salesfinity.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Call Log by ID

> Get a call log by ID

Retrieves a single call log entry by its ID.

### Path Parameters

* **id** (*required*, string): Call log ID

### Response

Returns the call log object matching the given ID, or 404 if not found.

```json theme={null}
{
  "data": {
    "_id": "507f1f77bcf86cd799439011",
    "call_id": "call_abc123",
    "outcome": "answered",
    "direction": "outbound",
    "answered_by": "human",
    "duration": 180,
    "to": "+1234567890",
    "from": "+1987654321",
    "disposition": {
      "internal_id": 1,
      "external_id": "meeting_set",
      "external_name": "Meeting Set"
    },
    "contact": {
      "first_name": "John",
      "last_name": "Doe",
      "company": "Acme Corp",
      "email": "john@acme.com",
      "title": "VP of Sales"
    },
    "contact_list": {
      "_id": "507f1f77bcf86cd799439022",
      "name": "Q1 Prospects"
    },
    "user": {
      "_id": "507f1f77bcf86cd799439033",
      "first_name": "Jane",
      "last_name": "Smith",
      "email": "jane@company.com"
    },
    "recording_url": "https://recordings.example.com/call_abc123.mp3",
    "notes": "Great conversation, follow up next week",
    "is_completed": true,
    "started_at": "2024-01-15T14:30:00.000Z",
    "ended_at": "2024-01-15T14:33:00.000Z",
    "createdAt": "2024-01-15T14:33:00.000Z",
    "updatedAt": "2024-01-15T14:33:00.000Z"
  }
}
```


## OpenAPI

````yaml GET /v1/call-log/{id}
openapi: 3.0.1
info:
  title: Salesfinity API
  description: API documentation for Salesfinity platform
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://client-api.salesfinity.co
security:
  - ApiKeyAuth: []
paths:
  /v1/call-log/{id}:
    get:
      tags:
        - Call Logs
      description: Get a call log by ID
      operationId: get-call-log-by-id
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: Call log ID
      responses:
        '200':
          description: Call log retrieved successfully
          content:
            application/json:
              schema:
                type: object
        '404':
          description: Call log not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      required:
        - error
        - message
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````