latestOpenAPI 3.0.1Proprietary2026-08-1844131294.9 KB

59cd6443fdbf

Employee Personal Details

Retrieve employee personal details

Get comprehensive personal information about an employee including name, date of birth, gender, and marital status.

This endpoint provides access to the employee's personal profile data that is typically used for HR records, compliance, and employee management purposes.

get/v1/employees/{employeeId}/personal

Path parameters

employeeIdstring uuid required

Unique identifier for the employee

Response

Employee personal details retrieved successfully

firstNamestring

Employee's first name

middleNamestring nullable

Employee's middle name (optional)

lastNamestring

Employee's last name

fullLegalNamestring

Employee's full legal name

dateOfBirthstring date

Employee's date of birth (YYYY-MM-DD)

gender'FEMALE' | 'MALE' | 'UNSPECIFIED' | 'UNKNOWN'

Employee's gender

maritalStatus'DIVORCED' | 'MARRIED' | 'SINGLE' | 'UNSPECIFIED' | 'WIDOWED' | 'SEPARATED' | 'UNKNOWN'

Employee's marital status

ageinteger

Employee's age (computed from date of birth)

religionstring nullable

Employee's religion (optional)

Example response

{
  "firstName": "Foo",
  "lastName": "Bar",
  "fullLegalName": "Foo Bar",
  "dateOfBirth": "2000-10-11",
  "gender": "MALE",
  "maritalStatus": "SINGLE",
  "age": 25,
  "religion": "Sikh",
  "nationalities": [
    {
      "country": "CHE",
      "type": "CITIZEN"
    }
  ]
}