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

# Get a Lincoln AI conversation

> Where a conversation stands: `status`, Lincoln's latest `reply`, the `actions` it took, any `pending_approvals`, and the full transcript in `messages`. Poll this after `POST /v1/lincoln/messages` returns `status: working`; while Lincoln is still going, `reply` holds what it has said so far. Free: reads are never billed.



## OpenAPI

````yaml /openapi.json get /v1/lincoln/conversations/{id}
openapi: 3.1.0
info:
  title: LumisReach v1 API
  version: 1.0.0
  description: >-
    Programmatic access to the LumisReach voice platform — calls, numbers,
    caller trust, and brands.
  contact:
    name: LumisReach
    email: founders@lumisreach.com
servers:
  - url: https://api.lumisreach.com/api
security:
  - bearerAuth: []
tags:
  - name: Phone Numbers
  - name: Caller IDs
  - name: Enterprise Registration
  - name: Branded Calling
  - name: Calls
  - name: SMS
  - name: WebRTC
  - name: Reputation
  - name: Usage
  - name: Account
  - name: Billing
  - name: Conversation History
  - name: Documents
  - name: Lincoln AI
  - name: Quick Agent Actions
  - name: Sub-entities
paths:
  /v1/lincoln/conversations/{id}:
    get:
      tags:
        - Lincoln AI
      summary: Get a Lincoln AI conversation
      description: >-
        Where a conversation stands: `status`, Lincoln's latest `reply`, the
        `actions` it took, any `pending_approvals`, and the full transcript in
        `messages`. Poll this after `POST /v1/lincoln/messages` returns `status:
        working`; while Lincoln is still going, `reply` holds what it has said
        so far. Free: reads are never billed.
      operationId: v1_lincoln_conversations_id_get
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $schema: http://json-schema.org/draft-07/schema#
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      conversation_id:
                        type: string
                        format: uuid
                        pattern: >-
                          ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                      title:
                        type: string
                      status:
                        type: string
                        enum:
                          - working
                          - idle
                          - awaiting_approval
                          - failed
                        description: >-
                          `working`: Lincoln is mid-turn. `idle`: done, waiting
                          for your next message. `awaiting_approval`: paused
                          until you answer `pending_approvals`. `failed`: the
                          turn errored (see `error`).
                      run_id:
                        anyOf:
                          - type: string
                          - type: 'null'
                      reply:
                        anyOf:
                          - type: string
                          - type: 'null'
                        description: >-
                          Lincoln's latest reply as text. Partial while `status`
                          is `working`.
                      actions:
                        type: array
                        items:
                          type: object
                          properties:
                            tool_call_id:
                              type: string
                            tool:
                              type: string
                              description: The tool Lincoln used, e.g. `list_phone_numbers`
                            status:
                              type: string
                              enum:
                                - running
                                - awaiting_approval
                                - approved
                                - denied
                                - completed
                                - failed
                            input:
                              description: The arguments Lincoln passed
                            output:
                              anyOf:
                                - {}
                                - type: 'null'
                              description: What the tool returned, when it completed
                            error:
                              anyOf:
                                - type: string
                                - type: 'null'
                          required:
                            - tool_call_id
                            - tool
                            - status
                            - input
                            - output
                            - error
                          additionalProperties: false
                        description: The tool calls in Lincoln's latest reply
                      pending_approvals:
                        type: array
                        items:
                          type: object
                          properties:
                            approval_id:
                              type: string
                            tool_call_id:
                              type: string
                            tool:
                              type: string
                            input: {}
                            reason:
                              anyOf:
                                - type: string
                                - type: 'null'
                              description: >-
                                Why this action needs a yes: what it costs or
                                changes
                          required:
                            - approval_id
                            - tool_call_id
                            - tool
                            - input
                            - reason
                          additionalProperties: false
                      error:
                        anyOf:
                          - type: string
                          - type: 'null'
                      updated_at:
                        type: string
                        format: date-time
                        pattern: >-
                          ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$
                      created_at:
                        type: string
                        format: date-time
                        pattern: >-
                          ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$
                      messages:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                            role:
                              type: string
                              enum:
                                - user
                                - assistant
                            text:
                              type: string
                            platform_update:
                              type: boolean
                              description: >-
                                `true` for updates LumisReach posted on its own,
                                e.g. a video finishing
                            actions:
                              type: array
                              items:
                                type: object
                                properties:
                                  tool_call_id:
                                    type: string
                                  tool:
                                    type: string
                                    description: >-
                                      The tool Lincoln used, e.g.
                                      `list_phone_numbers`
                                  status:
                                    type: string
                                    enum:
                                      - running
                                      - awaiting_approval
                                      - approved
                                      - denied
                                      - completed
                                      - failed
                                  input:
                                    description: The arguments Lincoln passed
                                  output:
                                    anyOf:
                                      - {}
                                      - type: 'null'
                                    description: What the tool returned, when it completed
                                  error:
                                    anyOf:
                                      - type: string
                                      - type: 'null'
                                required:
                                  - tool_call_id
                                  - tool
                                  - status
                                  - input
                                  - output
                                  - error
                                additionalProperties: false
                          required:
                            - id
                            - role
                            - text
                            - platform_update
                            - actions
                          additionalProperties: false
                    required:
                      - conversation_id
                      - title
                      - status
                      - run_id
                      - reply
                      - actions
                      - pending_approvals
                      - error
                      - updated_at
                      - created_at
                      - messages
                    additionalProperties: false
                required:
                  - data
                additionalProperties: false
        '400':
          description: Validation error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '409':
          description: Conflict (incl. idempotency conflicts)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '429':
          description: Rate limited
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
components:
  schemas:
    ErrorEnvelope:
      type: object
      properties:
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
            message:
              type: string
            fields:
              type: object
              additionalProperties:
                type: string
            doc_url:
              type: string
              format: uri
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````