---
title: "List all guests of a center"
method: GET
path: "/v1/guests?center_id={center_id}&last_updated={date}"
---

# List all guests of a center

`GET /v1/guests?center_id={center_id}&last_updated={date}`

This API helps you to retrieve all guests of the specified center.

You must specify the unique identifier of the center as `center_id` in the API request.
You can also list the guests who are updated recently by passing the last_updated parameter.
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.

## Query parameters

- `center_id` string, required
- `last_updated` string, date
- `page` integer
- `size` integer

## Response `200`

200

- object
  - `guests` object[]
    - `id` string
    - `code` string
    - `center_id` string
    - `personal_info` object
      - `user_name` string
      - `first_name` string
      - `last_name` string
      - `middle_name` string
      - `email` string
      - `mobile_phone` object
        - `country_code` integer
        - `number` string
      - `work_phone` unknown
      - `home_phone` unknown
      - `gender` integer
      - `date_of_birth` unknown
      - `is_minor` boolean
      - `nationality_id` integer
      - `anniversary_date` unknown
      - `lock_guest_custom_data` boolean
      - `pan` string
    - `address_info` unknown
    - `preferences` unknown
    - `tags` unknown
    - `referral` unknown
    - `primary_employee` unknown

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