---
title: "List all employees of a center"
method: GET
path: "/v1/centers/{center_id}/employees"
---

# List all employees of a center

`GET /v1/centers/{center_id}/employees`

This API helps you to retrieve all the employees that are active in the center on the specified date.

You must specify the unique identifier of the center as `center_id` in the API request.
You can also leverage the pagination feature by passing `page` and `size` query parameters if you have a large number of records to be displayed. By default, `page` is set as 1 and `size` is set as 10. `size` cannot be more than 100: which means that the maximum records per page cannot be more than 100.

## Path parameters

- `center_id` string, required

## Query parameters

- `date` string, date
- `page` integer
- `size` integer

## Response `200`

200

- object
  - `employees` object[]
    - `id` string
    - `code` string
    - `personal_info` object
      - `first_name` string
      - `last_name` string
      - `name` string
      - `gender` integer
    - `job_info` object
      - `id` string
      - `name` string

## Other responses

- `400` — 400

---

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