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

# Get Warm Transfer Detail

> Consult recording (File B) + scrubbed consult transcript.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/voice/warm-transfer/{conversation_id}/transfer-detail
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.21.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/voice/warm-transfer/{conversation_id}/transfer-detail:
    get:
      tags:
        - voice
      summary: Get Warm Transfer Detail
      description: Consult recording (File B) + scrubbed consult transcript.
      operationId: >-
        get_warm_transfer_detail_v1_voice_warm_transfer__conversation_id__transfer_detail_get
      parameters:
        - name: conversation_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Conversation Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransferDetailResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    TransferDetailResponse:
      properties:
        supervisor_phone:
          anyOf:
            - type: string
            - type: 'null'
          title: Supervisor Phone
        status:
          anyOf:
            - type: string
            - type: 'null'
          title: Status
        failure_reason:
          anyOf:
            - type: string
            - type: 'null'
          title: Failure Reason
        fallback_mode:
          anyOf:
            - type: string
            - type: 'null'
          title: Fallback Mode
        consult_recording:
          $ref: '#/components/schemas/RecordingPlaybackResponse'
        consult_transcript:
          items:
            $ref: '#/components/schemas/ConsultTurnOut'
          type: array
          title: Consult Transcript
      type: object
      required:
        - consult_recording
      title: TransferDetailResponse
      description: >-
        Everything the session-detail page surfaces for a warm transfer.


        Recordings are PII-redacted per the org's audio policy; the transcript
        is

        PII-redacted per the org's text policy (both at session close) — same

        handling as a normal conversation. ``supervisor_phone`` is the

        operator-configured business destination that was consulted (the latest

        attempt's), NOT customer PII, so it is surfaced raw to
        ``communication:read``.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    RecordingPlaybackResponse:
      properties:
        url:
          anyOf:
            - type: string
            - type: 'null'
          title: Url
        expires_in:
          type: integer
          title: Expires In
        duration_ms:
          anyOf:
            - type: integer
            - type: 'null'
          title: Duration Ms
        bytes:
          anyOf:
            - type: integer
            - type: 'null'
          title: Bytes
        status:
          type: string
          title: Status
      type: object
      required:
        - expires_in
        - duration_ms
        - bytes
        - status
      title: RecordingPlaybackResponse
    ConsultTurnOut:
      properties:
        seq:
          type: integer
          title: Seq
        role:
          type: string
          title: Role
        content:
          anyOf:
            - type: string
            - type: 'null'
          title: Content
        created_at:
          type: string
          format: date-time
          title: Created At
      type: object
      required:
        - seq
        - role
        - content
        - created_at
      title: ConsultTurnOut
      description: One scrubbed turn of the agent↔supervisor warm-transfer consult.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````