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

# Retrieve employee contact details

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

Get employee contact information including personal email, phone number,
and emergency contact details.

This endpoint provides access to all communication channels for reaching the employee
and their designated emergency contact person.

## Path parameters

- `employeeId` string, uuid, required

## Response `200`

Employee contact details retrieved successfully

- V1EmployeesEmployeeIdContactGetResponse
  - `personalEmail` string, email — Employee's personal email address
  - `personalPhoneNumber` string, nullable — Employee's personal phone number (optional)
  - `emergencyContact` object, nullable — Emergency contact information
    - `name` string — Name of the emergency contact person
    - `phoneNumber` string — Phone number of the emergency contact
    - `relationship` 'SPOUSE' | 'DAUGHTER' | 'SON' | 'FATHER' | 'MOTHER' | 'UNKNOWN' — Relationship to the employee

## 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)
