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
      • Bulk Invite
      • Reattempt Test
      • Cancel Invitation
    • Test Link
      • List all test links
      • Create Test Link
      • Update Test Link
    • Report
      • Retrieve candidate test report
        GET
      • Retrieve candidate test report in PDF
        GET
      • Get Reports By TestId
        GET
      • Get All Reports
        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
    • Tara Interview API
      • Introduction
      • Get All Interviews
      • Schedule Interview
      • Get Detailed Report
      • Get All Reports
  • 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
      • Upload Certificate for Employee
      • Upload Resume for Employee
      • List Employees with Skills Profile
      • Assign Learning to Employee
      • Get Employee Skill Gap
    • 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 Rubric Levels
      • Get Multichannel Validation Weightages
    • Learning
      • Create Learning Resources
      • Get all Learning Resources
    • Certificates
      • Create certificate with skills
      • Get all Certificates
  1. Report

Get All Reports

GET
/v3/reports
This API retrieves a paginated list of candidate test reports for a customer between a specified date range. It includes test performance, scores, completion status, and PDF report URLs for each candidate.

By default, if no date range is specified, the API returns data from the past 7 days.


By default, the API returns up to 100 records per request. Additional records can be retrieved using pagination parameters.

Request

Query Params

Header Params

Responses

🟢200Success
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://apiv3.imocha.io/v3/reports?PageNo=1&PageSize=100&includeSections=true&startDate=2015-07-31T12%3A00%3A56Z&endDate=2025-07-31T12%3A00%3A56Z' \
--header 'x-api-key;'
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-12-30 15:21:38
Previous
Get Reports By TestId
Next
Process Callbacks
Built with