About iMochaHelpBook a demo
About iMochaHelpBook a demo
  1. Report
  • 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
        GET
      • Retrieve candidate test report in PDF
        GET
    • 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 Employee Skills by employeeId
      • Employee Enrollment
      • Update Employee Status
    • 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. Report

Retrieve candidate test report

GET
/v3/reports/{testInvitationId}
🔶 Retrieves candidate test report using testinvitation id.
FieldTypeDescription
reportType1Return assessment report with test summary with section level score information.
reportType2Return assessment report with skill wise score information.
reportType3Return assessment report with both section wise and skill wise information.

Request

Path Params

Query Params

Header Params

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://apiv3.imocha.io/v3/reports/{testInvitationId}?reportType=' \
--header 'x-api-key;'
Response Response Example
{
    "sections": [
        {
            "candidateScore": 0,
            "sectionScore": 0,
            "noOfQue": 0,
            "sectionID": 0,
            "sectionName": "string",
            "sectionTime": 0,
            "sectionTimeTaken": 0,
            "negativeMark": 0,
            "correctQuestions": 0,
            "wrongQuestions": 0,
            "skippedQuestions": 0,
            "notAnsweredQuestions": 0,
            "skills": null,
            "partitionKey": "string",
            "rowKey": "string",
            "timestamp": "string",
            "eTag": "string"
        }
    ],
    "testInvitationId": 0,
    "extEmployeeId": null,
    "testId": 0,
    "candidateEmail": "string",
    "candidateName": "string",
    "attemptedOn": "string",
    "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
        }
    ]
}
Modified at 2025-08-19 13:33:08
Previous
List all test links
Next
Retrieve candidate test report in PDF
Built with