---
title: "Return a list of employee addresses."
method: GET
path: "/employees/addresses"
tags: ["Employees"]
---

# Return a list of employee addresses.

`GET /employees/addresses`

This endpoint returns a list with the **address** sections of the existing employees. Additionally, custom fields from this section will also be included.

## Query parameters

- `street` string
- `postalCode` string
- `city` string
- `country` string
- `houseNumber` string
- `additionalAddress` string

## Headers

- `Authorization` string, required

## Response `200`

OK

- object
  - `data` object[]
    - `_id` string — The _id of the Kenjo employee.
    - `street` string — The name of the street.
    - `postalCode` string — The postal code.
    - `city` string — The city.
    - `country` string — The country code in ISO 3166-1 alpha-2.
    - `houseNumber` string — The house number.
    - `additionalAddress` string — The additional address.

## Other responses

- `400` — BAD REQUEST. This is a wrong request in the client side due to invalid body or params.
- `401` — UNAUTHORIZED. The Authorization header is incorrect, not provided or the token expired.

---

[API](https://skmtc.net/kenjo/apis/kenjo-api.md) · [All operations](https://skmtc.net/kenjo/apis/kenjo-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/kenjo/kenjo-api/revisions/58772b78268e/schema)
