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
      • Get Reports By TestId
        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
      • Get Employee Certificates
      • Update Employee Status
      • Get Employee Assessment Report
    • 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

Get Reports By TestId

Developing
GET
/v3/reports/tests/{testId}
Retrieves a list of all completed test attempts for a specific test. Each entry includes relevant details such as the test ID, attempt ID, score, completion date, and any additional metadata associated with the attempt.
By default, the API returns up to 100 records per request. Additional records can be retrieved using pagination parameters.

Request

Path Params

Query Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://apiv3.imocha.io/v3/reports/tests/?PageNo&PageSize'
Response Response Example
{
    "reports": [
        {
            "candidateFullName": "string",
            "status": "string",
            "appearedOn": "string",
            "testInvitationId": 0,
            "testId": 0,
            "candidateEmail": "string",
            "completedOn": "string",
            "score": 0,
            "candidatePoints": 0,
            "totalTestPoints": 0,
            "scorePercentage": 0,
            "timeTaken": 0,
            "testDuration": 0,
            "performanceCategory": "string",
            "testName": "string",
            "pdfReportUrl": "string"
        }
    ],
    "pageNumber": 0,
    "totalPages": 0,
    "totalCount": 0,
    "hasPreviousPage": true,
    "hasNextPage": true
}
Modified at 2025-10-17 12:01:25
Previous
Retrieve candidate test report in PDF
Next
Process Callbacks
Built with