latestOpenAPI 3.0.1Proprietary2026-08-1844131294.9 KB

59cd6443fdbf

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
    }
  ]
}