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

# Get interview module member stats

> Returns detailed training counts, remaining requirements, current session state, and pause state for one interview module member.

<Note>**Beta**: this endpoint may change or be removed without notice while in beta. There is no compatibility promise until it reaches general availability.</Note>


## OpenAPI

````yaml /openapi.json get /v1/interview-modules/{moduleId}/members/{memberId}/stats
openapi: 3.1.0
info:
  title: ModernLoop Platform API
  version: 0.1.0
  description: The ModernLoop Platform API for managing recruiting workflows.
  contact:
    email: support@modernloop.io
servers:
  - url: https://api.modernloop.io
security: []
tags:
  - name: Application
  - name: Candidate
  - name: Interview Event
  - name: Interview Module
  - name: Interviewer
  - name: Job
  - name: Job Stage
  - name: Organization
  - name: Schedule
  - name: Scheduling Task
  - name: Task Queue
  - name: Template
paths:
  /v1/interview-modules/{moduleId}/members/{memberId}/stats:
    get:
      tags:
        - Interview Module
      summary: Get interview module member stats
      description: >-
        Returns detailed training counts, remaining requirements, current
        session state, and pause state for one interview module member.
      operationId: getInterviewModuleMemberStats
      parameters:
        - schema:
            type: string
            pattern: >-
              ^(?:mod_)?(?:[0-9a-fA-F]{32}|[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})$
            description: >-
              an interview module ID. Accepts the canonical prefixed compact
              UUID, a prefixed dashed UUID, a bare dashed UUID, or a bare
              compact UUID; input is case-insensitive.
            example: mod_a1b2c3d4e5f64789a1b2c3d4e5f64789
          required: true
          name: moduleId
          in: path
        - schema:
            type: string
            pattern: >-
              ^(?:emp_)?(?:[0-9a-fA-F]{32}|[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})$
            description: >-
              an employee ID. Accepts the canonical prefixed compact UUID, a
              prefixed dashed UUID, a bare dashed UUID, or a bare compact UUID;
              input is case-insensitive.
            example: emp_a1b2c3d4e5f64789a1b2c3d4e5f64789
          required: true
          name: memberId
          in: path
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InterviewModuleMemberTrainingStats'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '409':
          description: Conflict
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '410':
          description: Gone
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    InterviewModuleMemberTrainingStats:
      type: object
      properties:
        completed:
          type: integer
        upcoming:
          type: integer
        completed_as_shadow:
          type: integer
        completed_as_reverse_shadow:
          type: integer
        completed_as_interviewer:
          type: integer
        manual_completed_as_shadow:
          type: integer
        manual_completed_as_reverse_shadow:
          type: integer
        manual_completed_as_interviewer:
          type: integer
        training_status:
          type: string
          enum:
            - TRAINED
            - SHADOW
            - REVERSE_SHADOW
        trainings_to_pass:
          type: integer
        shadows_required:
          type: integer
        reverse_shadows_required:
          type: integer
        shadow_offset:
          type: integer
        reverse_shadow_offset:
          type: integer
        current_training_session:
          type:
            - string
            - 'null'
        current_training_session_status:
          type: string
          enum:
            - NONE
            - SCHEDULED
            - REQUIRED_INTERVIEWS_SCHEDULED
            - UNSCHEDULED
            - NEEDS_APPROVAL
        paused:
          type: object
          properties:
            is_paused:
              type: boolean
            until:
              type:
                - string
                - 'null'
              format: date-time
              description: ISO 8601 timestamp.
          required:
            - is_paused
            - until
      required:
        - completed
        - upcoming
        - completed_as_shadow
        - completed_as_reverse_shadow
        - completed_as_interviewer
        - manual_completed_as_shadow
        - manual_completed_as_reverse_shadow
        - manual_completed_as_interviewer
        - training_status
        - trainings_to_pass
        - shadows_required
        - reverse_shadows_required
        - shadow_offset
        - reverse_shadow_offset
        - current_training_session
        - current_training_session_status
        - paused
      description: >-
        Detailed training progress for one member in one interview module,
        including completed and upcoming interviews, remaining requirements, and
        pause state.
      example:
        completed: 3
        upcoming: 1
        completed_as_shadow: 2
        completed_as_reverse_shadow: 1
        completed_as_interviewer: 0
        manual_completed_as_shadow: 1
        manual_completed_as_reverse_shadow: 0
        manual_completed_as_interviewer: 0
        training_status: REVERSE_SHADOW
        trainings_to_pass: 1
        shadows_required: 2
        reverse_shadows_required: 2
        shadow_offset: 1
        reverse_shadow_offset: 0
        current_training_session: Reverse shadow 2
        current_training_session_status: SCHEDULED
        paused:
          is_paused: false
          until: null
    ErrorResponse:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              enum:
                - UNAUTHENTICATED
                - API_ACCESS_DISABLED
                - SCOPE_MISSING
                - INSUFFICIENT_SCOPE
                - VALIDATION_FAILED
                - INVALID_CURSOR
                - PAYLOAD_TOO_LARGE
                - NOT_FOUND
                - NOT_FOUND_MAY_BE_SYNCING
                - CANDIDATE_ANONYMIZED
                - TASK_STAGE_NOT_SCHEDULABLE
                - DUPLICATE_REQUEST_OPEN
                - IDEMPOTENCY_KEY_REQUIRED
                - IDEMPOTENCY_KEY_REUSED
                - PREVIEW_EXPIRED
                - PREVIEW_STALE
                - RATE_LIMITED
                - CONFLICT
                - NOT_IMPLEMENTED
                - INTERNAL
                - UPSTREAM_TIMEOUT
            message:
              type: string
            docs_url:
              type: string
              format: uri
          required:
            - code
            - message
      required:
        - error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API tokens are passed as Bearer tokens.

````