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