About iMochaHelpBook a demo
About iMochaHelpBook a demo
  1. Employee
  • Introduction
  • Skills Assessment API
    • API Reference
      • Getting started
      • API Environment
      • Authentication Mechanism
      • Error Code
      • List timezones
    • Test
      • List all tests
      • Retrieve a test
      • Retrieve test settings
      • Update Test Settings
    • Test Invitations
      • Callback notification
      • Invite candidate
      • Invite candidate by test link
      • Reattempt Test
      • Cancel Invitation
    • Test Link
      • List all test links
    • Report
      • Retrieve candidate test report
      • Retrieve candidate test report in PDF
    • Callback API
      • Process Callbacks
      • Retrieve Invites
    • GDPR
      • GDPR Data Masking Service
    • Users
      • Get all business units
      • Create New User
      • Update User
      • Active/ Inactive User
  • Skills Intelligence API
    • Introduction
    • Authentication
    • Employee
      • List employees
        GET
      • Get Employee Skills by employeeId
        GET
      • Employee Enrollment
        POST
      • Get Employee Certificates
        GET
      • Update Employee Status
        PATCH
      • Get Employee Assessment Report
        GET
    • JobProfiles
      • Get All JobProfiles
      • Get JobProfile with Skills By JobProfileId
      • Create JobCode
    • Taxonomy
      • Get all Taxonomy Skills
    • CareerPath
      • Get Employee Career Path by employeeId
    • Account
      • Get Multichannel Validation Weightages
  1. Employee

Get Employee Assessment Report

Developing
GET
/employees/{employeeId}/reports/{testId}
This API retrieves the most recent completed assessment report for a specified employee, based on the provided employee ID and test ID.

Request

Path Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.skillsintelligence.imocha.io/employees//reports/'
Response Response Example
{
  "reports": [
    {
      "testInvitationId": 0,
      "testId": 0,
      "candidateEmail": "string",
      "candidateName": "string",
      "attemptedOn": "2025-10-03T05:36:29.613Z",
      "completedOn": "string",
      "status": "string",
      "score": 0,
      "candidatePoints": 0,
      "totalTestPoints": 0,
      "scorePercentage": 0,
      "timeTaken": 0,
      "testDuration": 0,
      "performanceCategory": "string",
      "testName": "string",
      "pdfReportUrl": "string",
      "quesDifficultyAnalysis": [
        {
          "difficultyLevel": "string",
          "noOfQuestions": 0,
          "noOfCorrectQuestions": 0,
          "percentage": 0
        }
      ],
      "sections": [
        {
          "candidateScore": 0,
          "sectionScore": 0,
          "noOfQue": 0,
          "sectionName": "string",
          "sectionTime": 0,
          "sectionTimeTaken": 0,
          "negativeMark": 0,
          "correctQuestions": 0,
          "wrongQuestions": 0,
          "skippedQuestions": 0,
          "notAnsweredQuestions": 0
        }
      ]
    }
  ]
}
Modified at 2025-10-03 05:55:53
Previous
Update Employee Status
Next
Get All JobProfiles
Built with