Employee Education Details
Retrieve employee education details
Get employee education history including schools attended, degrees earned, graduation years, and academic performance.
This endpoint provides access to the employee's educational background, which is used for qualification verification and HR records.
get/v1/employees/{employeeId}/education
Path parameters
employeeIdstring uuid required
Unique identifier for the employee
Response
Employee education details retrieved successfully
Example response
{
"education": [
{
"lastSchoolAttended": "University of Zurich",
"degree": "Bachelor of Science in Computer Science",
"yearOfPassing": 2022,
"grade": "A",
"gpa": 3.8
}
]
}