---
title: "List Users"
method: GET
path: "/users"
tags: ["User"]
---

# List Users

`GET /users`

List users for the current account. Note: an OAuth/API integration authenticates as a
**platform-agent user** (e.g. "Default API Client"), so this endpoint is scoped to that
agent and typically returns only it — it is **not** the way to enumerate the human team
members. To find real team members (for example a workflow `notify_step`'s `user_ids`),
use `GET /api/v2/teams/{team_id}/memberships` and read each membership's `user_id`
(`notify_step` only accepts non-platform team members).

## Query parameters

- `after` string
- `sort_order` 'asc' | 'desc'
- `sort_property` 'id' | 'updated_at'

## Response `200`

OK

- UserAttributes[]
  - `id` integer — User ID
  - `public_id` string, nullable — User public ID
  - `email` string — Email Address
  - `first_name` string — First Name
  - `last_name` string — Last Name
  - `time_zone` string, nullable — Your Time Zone
  - `locale` string, nullable — Language
  - `created_at` string, date-time, nullable — Signed up
  - `updated_at` string, date-time, nullable — Updated

## Other responses

- `401` — Unauthorized

---

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