---
title: "Retrieve employee personal details"
method: GET
path: "/v1/employees/{employeeId}/personal"
tags: ["Employee Personal Details"]
---

# Retrieve employee personal details

`GET /v1/employees/{employeeId}/personal`

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.

## Path parameters

- `employeeId` string, uuid, required

## Response `200`

Employee personal details retrieved successfully

- V1EmployeesEmployeeIdPersonalGetResponse
  - `firstName` string — Employee's first name
  - `middleName` string, nullable — Employee's middle name (optional)
  - `lastName` string — Employee's last name
  - `fullLegalName` string — Employee's full legal name
  - `dateOfBirth` string, 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
  - `age` integer — Employee's age (computed from date of birth)
  - `religion` string, nullable — Employee's religion (optional)
  - `nationalities` object[] — List of nationalities associated with the employee
    - `country` string, required — ISO 3166-1 alpha-3 country code (e.g., 'CHE')
    - `type` 'CITIZEN' | 'PERMANENT_RESIDENT' | 'TEMPORARY_RESIDENT' | 'UNKNOWN', required — Type of nationality or residency status

## Other responses

- `400` — Invalid request parameters
- `401` — Authentication required
- `403` — Forbidden - insufficient permissions
- `404` — Resource not found
- `422` — Unprocessable entity - validation error
- `500` — Internal server error
- `503` — Service unavailable - upstream dependency error

---

[API](https://skmtc.net/usemultiplier/apis/multiplier-public-rest-api.md) · [All operations](https://skmtc.net/usemultiplier/apis/multiplier-public-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/usemultiplier/multiplier-public-rest-api/revisions/59cd6443fdbf/schema)
