SkyHive’s Career Path API lets you manage employee skills and can assist with upskilling and reskilling employees. With this API, you can:
You can compare and search for existing skills using these methods:
The compareSkills method compares two arrays of skills:
The compareSkills method returns an array of matching skills, an array of skills that are present in the “to” array but missing in the “from” array, and a score that indicates the quality of the match.
The following use case covers a possible application of the Career Path API:
Array of objects (Skill-2) unique Required skills and levels | |
Array of objects (Skill-2) unique Skills being compared |
OK
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
{- "from": [
- {
- "id": "string",
- "title": "string",
- "level": "entry",
- "required": "required",
- "definition": "string",
- "type": "technical",
- "trend": "constant"
}
], - "to": [
- {
- "id": "string",
- "title": "string",
- "level": "entry",
- "required": "required",
- "definition": "string",
- "type": "technical",
- "trend": "constant"
}
]
}
{- "matchingSkills": [
- {
- "id": "string",
- "title": "string",
- "level": "entry",
- "required": "required",
- "trend": "constant"
}
], - "missingSkills": [
- {
- "id": "string",
- "title": "string",
- "level": "entry",
- "required": "required",
- "trend": "constant"
}
], - "quality": 0
}
OK
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
{- "skills": [
- "string"
], - "ids": [
- "string"
], - "size": 0,
- "id_type": "string"
}
{- "values": [
- {
- "id": "string",
- "title": "string",
- "quality": "string",
- "type": "technical"
}
]
}
OK
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
{- "skills": [
- "string"
], - "ids": [
- "string"
], - "size": 0,
- "id_type": "string"
}
{- "values": [
- {
- "id": "string",
- "title": "string",
- "quality": "string",
- "type": "technical"
}
]
}
OK
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
{- "values": [
- {
- "id": "string",
- "title": "string",
- "quality": "string",
- "type": "technical"
}
]
}