---
title: "Fetch a list of People"
method: GET
path: "/people"
---

# Fetch a list of People

`GET /people`

## Query parameters

- `cursor` string
- `per_page` integer
- `search` string

## Response `200`

A paged array of People

- object
  - `page` integer — current page of data, as specified by the 'page' request parameter. This page number is 0-indexed.
  - `last_page` integer — the final page number for the dataset. This is zero-indexed, so that a dataset with a record count less than or equal to the page size will be 0.
  - `data` Person[] — Details about the People
    - `id` string — The canonical identifier for this person
    - `name` string — The human-readable name for this person
    - `email` string — the recorded email address for this person
    - `created_at` string, date-time — when the person record was created
    - `status` string — The active/archived status of the person. When a person is archived, all devices that were assigned to them are unassigned, and device auto-assignment will not apply to them in the future.
    - `device_count` integer — The number of devices assigned to this user
    - `onboarded` boolean — Whether the person has been onboarded

## Other responses

- `403` — An 'unauthorized' response may occur for features restricted by or unavailable to your organization

---

[API](https://skmtc.net/kolide/apis/k2-api.md) · [All operations](https://skmtc.net/kolide/apis/k2-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/kolide/k2-api/versions/7013d788398e/schema)
