About iMochaHelpBook a demo
About iMochaHelpBook a demo
  1. CareerPath
  • 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
      • 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
        GET
    • Account
      • Get Multichannel Validation Weightages
  1. CareerPath

Get Employee Career Path by employeeId

GET
/career-path/{employeeId}
This endpoint retrieves the career path recommendations for a specific employee, based on their current skills, proficiency levels, and mapped job profiles. The response includes potential future roles (job profiles), required skills, and how closely the employee matches each role.

Request

Path Params

Header Params

Responses

🟢200OK
text/plain
OK
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://api.skillsintelligence.imocha.io/career-path/{employeeId}' \
--header 'x-api-key;'
Response Response Example
[
    {
        "jobProfile": {
            "jobProfileId": 0,
            "jobProfileName": "string",
            "grade": {
                "id": 0,
                "name": "string"
            },
            "jobProfileSkills": [
                {
                    "skill": {
                        "skillId": 0,
                        "skillName": "string",
                        "skillPriority": 0,
                        "skillClassification": {
                            "classificationId": 0,
                            "classificationName": "string"
                        }
                    },
                    "requiredProficiency": 0
                }
            ]
        },
        "skillMatchScore": 0,
        "skillProficiencyMatchScore": 0,
        "careerPathType": "string",
        "linkedJobProfiles": [
            {
                "jobProfileId": 0,
                "linkedToJobProfileId": 0,
                "jobProfileName": "string",
                "gradeName": "string",
                "departmentName": "string"
            }
        ]
    }
]
Modified at 2025-08-19 13:31:01
Previous
Get all Taxonomy Skills
Next
Get Multichannel Validation Weightages
Built with