---
title: "List Users"
method: GET
path: "/api/v1/admin/users/"
tags: ["admin-users"]
---

# List Users

`GET /api/v1/admin/users/`

List all users with optional search and status filtering.

Requires ``users:view`` permission. Rows additionally carry the CRM
rollup columns (last activity, orders, revenue, open/lost quotes, last
outreach, suppression flag) when the caller also holds
``customer_followups:view``.

## Query parameters

- `search` string, nullable — Search by email, first name, or last name
- `status` string, nullable — Filter by user status
- `sort` string — Row ordering: 'joined' (created_at DESC) or a CRM-stats ordering (last_activity/revenue/orders/committed, DESC NULLS LAST). Stats orderings require the customer_followups:view permission.
- `offset` integer
- `limit` integer

## Response `200`

Successful Response

- PaginatedResponseAdminUserListItem
  - `items` AdminUserListItem[], required
    - `id` string, uuid, required
    - `email` string, required
    - `first_name` string, required
    - `last_name` string, required
    - `company` string, nullable
    - `phone` string, nullable
    - `status` string, required
    - `created_at` string, date-time, required
    - `project_count` integer
    - `last_activity_at` string, date-time, nullable
    - `last_order_at` string, date-time, nullable
    - `last_outreach_at` string, date-time, nullable
    - `total_orders` integer, nullable
    - `total_revenue` string, nullable
    - `committed_orders` integer, nullable
    - `committed_revenue` string, nullable
    - `committed_unpaid_revenue` string, nullable
    - `brokered_orders` integer, nullable
    - `brokered_revenue` string, nullable
    - `open_quotes` integer, nullable
    - `lost_quotes` integer, nullable
    - `suppressed` boolean, nullable
    - `stats_computed_at` string, date-time, nullable
  - `total` integer, required
  - `offset` integer, required
  - `limit` integer, required
  - `has_more` boolean, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/prototyping/apis/prototyping-io-api.md) · [All operations](https://skmtc.dev/prototyping/apis/prototyping-io-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/prototyping/prototyping-io-api/revisions/f4a0079fbb57/schema)
