latestOpenAPI 3.0.1Proprietary2026-08-1844131294.9 KB

59cd6443fdbf

Employee Address Details

Retrieve employee address details

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.

get/v1/employees/{employeeId}/address

Path parameters

employeeIdstring uuid required

Unique identifier for the employee

Response

Employee address details retrieved successfully

Example response

{
  "currentAddress": {
    "addressLine1": "123 Main Street",
    "addressLine2": "Apartment 4B",
    "streetName": "Main Street",
    "landmark": "Near Central Park",
    "city": "Zurich",
    "subdivision": "Zurich",
    "country": "CHE",
    "postalCode": "8001"
  },
  "permanentAddress": {
    "addressLine1": "123 Main Street",
    "addressLine2": "Apartment 4B",
    "streetName": "Main Street",
    "landmark": "Near Central Park",
    "city": "Zurich",
    "subdivision": "Zurich",
    "country": "CHE",
    "postalCode": "8001"
  }
}