About iMochaHelpBook a demo
About iMochaHelpBook a demo
  1. Test
  • Introduction
  • Skills Assessment API
    • API Reference
      • Getting started
      • API Environment
      • Authentication Mechanism
      • Error Code
      • List timezones
    • Test
      • List all tests
        GET
      • Retrieve a test
        GET
      • Retrieve test settings
        GET
      • Update Test Settings
        POST
    • 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 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. Test

List all tests

GET
/v3/tests
🔶 Returns the list of all active tests, including tests created in subusers.

Request

Query Params

Header Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://apiv3.imocha.io/v3/tests' \
--header 'x-api-key;'
Response Response Example
{
    "tests": [
        {
            "testId": 1154360,
            "testName": "Junior Net Developer",
            "status": "Active",
            "duration": 50,
            "questions": 1,
            "createdOn": "2025-05-15T07:35:34.2",
            "updatedOn": "2025-05-21T05:34:52.46",
            "createdBy": "[email protected]",
            "updatedBy": "[email protected]",
            "labels": []
        },
        {
            "testId": 1154364,
            "testName": "Junior Net Developer",
            "status": "Active",
            "duration": 40,
            "questions": 2,
            "createdOn": "2025-05-19T05:07:03.403",
            "updatedOn": "2025-05-28T05:56:53.313",
            "createdBy": "[email protected]",
            "updatedBy": "[email protected]",
            "labels": []
        }
    ],
    "count": 3
}
Modified at 2025-08-06 09:19:47
Previous
List timezones
Next
Retrieve a test
Built with