About iMochaHelpBook a demo
About iMochaHelpBook a demo
  1. Callback API
  • 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
        POST
      • Retrieve Invites
        POST
    • 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. Callback API

Process Callbacks

POST
/v3/callbacks/process
🔶 API will reprocess all testinvitationids passed by API user.
API will reprocess all testinvitationids passed by API user. At a time only 100 records will be processed.


Successful response of API calls means that testinvitation ids are scheduled for processing in queue. Actual response will be received to your endpoints shortly.

Request

Header Params

Body Params application/json

Examples

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://apiv3.imocha.io/v3/callbacks/process' \
--header 'x-api-key;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "testinvitationIds": [
        0
    ]
}'
Response Response Example
{
    "result": {
        "testinvitationIds": {
            "successful": [
                3178172,
                3178205
            ],
            "failed": []
        }
    },
    "errors": null
}
Modified at 2025-08-06 09:22:29
Previous
Retrieve candidate test report in PDF
Next
Retrieve Invites
Built with