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

# User Results

> Return results for a specific user



## OpenAPI

````yaml GET /users/{userid}/results
openapi: 3.0.3
info:
  title: Multi-Server API
  version: 1.0.0
servers:
  - url: https://api.defaultservice.com/v1
    description: Default service base URL
security:
  - basicAuth: []
paths:
  /users/{userid}/results:
    servers:
      - url: https://api.smartermeasure.com/v3
        description: SmarterMeasure User Service
    get:
      summary: Returns results for a specific user.
      parameters:
        - in: path
          name: userid
          required: true
          schema:
            type: number
          description: User that should be returned.
      responses:
        '200':
          description: User results.
          content:
            application/json:
              example:
                RowNumber: '1'
                UserId: '10000001'
                InternalId: STU-001
                CompletionPercentage: '0'
                DateTimeTaken: '2026-03-20T18:40:08Z'
                Account:
                  Id: '410'
                  Name: DEMO - Integration School
                FirstName: Alice
                LastName: Carter
                EmailAddress: alice.carter@example.com
                AssessmentResults:
                  - Code: LifeFactors
                    Title: Life Factors
                    IsComplete: '0'
                  - Code: LearnStyles
                    Title: Learning Styles
                    IsComplete: '0'
                  - Code: PersonalAttributes
                    Title: Personal Attributes
                    IsComplete: '0'
                  - Code: TechComp
                    Title: Technical Competency
                    IsComplete: '0'
                  - Code: TechKnowledge
                    Title: Technical Knowledge
                    IsComplete: '0'
                  - Code: Reading
                    Title: Reading Rate & Recall
                    IsComplete: '0'
                  - Code: Typing
                    Title: Typing Speed & Accuracy
                    IsComplete: '0'
              schema:
                $ref: '#/components/schemas/UserResultSummary'
components:
  schemas:
    UserResultSummary:
      type: object
      properties:
        RowNumber:
          type: string
        UserId:
          type: string
        InternalId:
          type: string
        CompletionPercentage:
          type: string
          description: Percentage of the assessment completed (0-100).
        DateTimeTaken:
          type: string
          format: date-time
        DateTimeLastUpdated:
          type: string
          format: date-time
        DateTimeCompleted:
          type: string
          format: date-time
        Account:
          type: object
          properties:
            Id:
              type: string
            Name:
              type: string
        FirstName:
          type: string
        LastName:
          type: string
        EmailAddress:
          type: string
          format: email
        AssessmentResults:
          type: array
          description: Completion status for each assessment section.
          items:
            type: object
            properties:
              Title:
                type: string
                description: Human-readable section name.
              Code:
                type: string
                description: Section code identifier (e.g. LearnStyles, LifeFactors).
              IsComplete:
                type: string
                description: Whether the section is complete. 1 = complete, 0 = incomplete.
              AttemptNumber:
                type: string
              Percent:
                type: string
                description: Percentage score. Only present when IsComplete is 1.
              Readiness:
                type: string
                description: >-
                  Readiness determination (pass, fail, question). Only present
                  when IsComplete is 1.
              Primary:
                type: string
                description: >-
                  Primary learning style(s). Only present for the LearnStyles
                  section.
              DateTimeCompleted:
                type: string
                format: date-time
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: Basic authentication with username and password

````