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

# Get a real call session by ID



## OpenAPI

````yaml https://api.wejam.ai/docs-json get /api/v1/real-call-sessions/{sessionId}
openapi: 3.0.0
info:
  contact: {}
  description: API description
  title: JAM
  version: 0.0.1
servers:
  - url: https://api.wejam.ai
security:
  - X-API-KEY: []
  - bearer: []
tags: []
paths:
  /api/v1/real-call-sessions/{sessionId}:
    get:
      tags:
        - real-call-session
      summary: Get a real call session by ID
      operationId: RealCallSessionController_findOne_v1
      parameters:
        - description: The unique identifier for the session.
          in: path
          name: sessionId
          required: true
          schema:
            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)$
            type: string
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RealCallSessionFindOneResponseDTO'
          description: ''
components:
  schemas:
    RealCallSessionFindOneResponseDTO:
      properties:
        analysis:
          properties:
            createdAt:
              format: date-time
              type: string
            id:
              type: string
            items:
              items:
                properties:
                  behaviours:
                    default: []
                    description: Array of behaviours assessed for this item
                    items:
                      properties:
                        evidence:
                          description: Evidence supporting the behaviour assessment
                          items:
                            type: string
                          type: array
                        score:
                          description: The numerical score for this behaviour
                          type: number
                        verdict:
                          description: The verdict of the behaviour evaluation
                          type: string
                      required:
                        - evidence
                        - verdict
                        - score
                      type: object
                    type: array
                  conversationItemReferenceId:
                    description: Reference ID to the conversation item
                    nullable: true
                    type: string
                  createdAt:
                    description: The date and time when the item was created
                    format: date-time
                    type: string
                  explanation:
                    description: Explanation of the analysis result
                    nullable: true
                    type: string
                  id:
                    description: The unique identifier for the analysis item
                    type: string
                  lastUpdatedAt:
                    description: The date and time when the item was last updated
                    format: date-time
                    type: string
                  name:
                    description: The name of the analysis item
                    nullable: true
                    type: string
                  score:
                    description: The numerical score for this analysis item
                    type: number
                  solved:
                    description: The solving status of the item
                    enum:
                      - undetected
                      - notSolved
                      - partlySolved
                      - solved
                      - null
                    nullable: true
                    type: string
                  state:
                    description: The current state of the analysis item
                    enum:
                      - PROCESSING
                      - DONE
                      - ERROR
                    type: string
                  suggestion:
                    description: Suggestions for improvement
                    nullable: true
                    type: string
                required:
                  - id
                  - createdAt
                  - lastUpdatedAt
                  - state
                  - score
                type: object
              type: array
            lastUpdatedAt:
              format: date-time
              type: string
            score:
              type: number
            state:
              enum:
                - PENDING
                - PROCESSING
                - DONE
                - SKIPPED
              type: string
          required:
            - id
            - createdAt
            - lastUpdatedAt
            - state
            - items
            - score
          type: object
        call:
          properties:
            assistantReferenceId:
              description: The reference ID for the assistant
              type: string
            createdAt:
              description: The date and time when the call was created
              format: date-time
              type: string
            endedReason:
              description: The reason why the call ended
              nullable: true
              type: string
            id:
              description: The unique identifier for the call
              type: string
            lastUpdatedAt:
              description: The date and time when the call was last updated
              format: date-time
              type: string
            providerCallId:
              description: The provider call identifier
              nullable: true
              type: string
            state:
              description: The current state of the call
              enum:
                - PENDING
                - DONE
                - DATA-NOT-AVAILABLE
                - CAN-NOT-PROCESS-TRANSCRIPT
              type: string
            summary:
              description: A summary of the call
              nullable: true
              type: string
            transcript:
              description: The transcribed conversation text
              nullable: true
              type: string
          required:
            - id
            - createdAt
            - lastUpdatedAt
            - assistantReferenceId
            - state
          type: object
        completed:
          type: boolean
        createdAt:
          format: date-time
          type: string
        id:
          type: string
        kpis:
          properties:
            createdAt:
              format: date-time
              type: string
            id:
              type: string
            lastUpdatedAt:
              format: date-time
              type: string
            listenRatio:
              nullable: true
              type: number
            longestMonologue:
              nullable: true
              type: number
            state:
              enum:
                - PENDING
                - PROCESSING
                - DONE
                - SKIPPED
              type: string
            talkSpeed:
              nullable: true
              type: number
          required:
            - id
            - createdAt
            - lastUpdatedAt
            - state
          type: object
        language:
          enum:
            - en
            - de
            - fr
            - es
            - it
            - nl
            - zh-Hans
          type: string
        lastUpdatedAt:
          format: date-time
          type: string
        missionReferenceId:
          description: Reference ID for the associated mission
          nullable: true
          type: string
        missionTitle:
          nullable: true
          type: string
        participantUserIds:
          description: >-
            User IDs of all attributed speakers in the call, including the
            scored rep. Empty array when the transcript carries no speaker
            attribution.
          items:
            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)$
            type: string
          type: array
        playedLanguage:
          enum:
            - en
            - de
            - fr
            - es
            - it
            - nl
            - pl
            - zh
            - ja
            - id
            - tr
            - pt
            - el
            - ko
            - vi
            - hi
            - ms
            - th
            - hr
            - ro
            - bg
            - sv
            - 'no'
            - yue
            - null
          nullable: true
          type: string
        scorecardReferenceId:
          description: Reference ID for the associated scorecard
          nullable: true
          type: string
        scorecardTitle:
          description: Title of the associated scorecard
          nullable: true
          type: string
        state:
          enum:
            - PENDING
            - PROCESSING
            - DONE
          type: string
        trackId:
          description: Parent track id for mission-backed roleplay sessions
          nullable: true
          type: string
        trackTitle:
          nullable: true
          type: string
        type:
          enum:
            - REAL_CALL
          type: string
        userId:
          type: string
      required:
        - id
        - createdAt
        - lastUpdatedAt
        - userId
        - call
        - analysis
        - kpis
        - language
        - state
        - completed
        - type
      type: object
  securitySchemes:
    X-API-KEY:
      in: header
      name: X-API-KEY
      type: apiKey
    bearer:
      bearerFormat: JWT
      description: Enter your Bearer token
      scheme: bearer
      type: http

````