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

# Retrieve employee address details

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

Get employee address information including current residential address and permanent address.

This endpoint provides access to the employee's current and permanent addresses,
which are used for official correspondence, tax purposes, and compliance requirements.

## Path parameters

- `employeeId` string, uuid, required

## Response `200`

Employee address details retrieved successfully

- V1EmployeesEmployeeIdAddressGetResponse
  - `currentAddress` V1EmployeesEmployeeIdAddressAddress
    - `addressLine1` string — Address line 1 (street address)
    - `addressLine2` string, nullable — Address line 2 (apartment, suite, etc.) - optional
    - `streetName` string, nullable — Street name (optional)
    - `landmark` string, nullable — Nearby landmark for easier location (optional)
    - `city` string — City name
    - `subdivision` string, nullable — State, province, or canton (optional)
    - `country` string — Country (ISO 3166-1 alpha-3 code)
    - `postalCode` string — Postal or ZIP code
  - `permanentAddress` V1EmployeesEmployeeIdAddressAddress
    - `addressLine1` string — Address line 1 (street address)
    - `addressLine2` string, nullable — Address line 2 (apartment, suite, etc.) - optional
    - `streetName` string, nullable — Street name (optional)
    - `landmark` string, nullable — Nearby landmark for easier location (optional)
    - `city` string — City name
    - `subdivision` string, nullable — State, province, or canton (optional)
    - `country` string — Country (ISO 3166-1 alpha-3 code)
    - `postalCode` string — Postal or ZIP code

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