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

# List Enterprise Users

`GET /enterprise/users`

Retrieves a list of all users in the enterprise account with their activity metrics and profile information.

**Export Options:**
- Add `?format=csv` to the URL to export the user list as a CSV file instead of JSON

## Query parameters

- `format` 'csv'

## Response `200`

Successfully retrieved list of users

- User[]
  - `email` string, email, required — User's email address
  - `firstLogin` integer, required — EPOCH timestamp in milliseconds of the user's first login
  - `givenName` string — User's given/first name (optional)
  - `isAdmin` boolean, required — Whether the user has administrator privileges
  - `joinDate` integer, required — EPOCH timestamp in milliseconds when the user joined
  - `lastActivity` integer, required — EPOCH timestamp in milliseconds of the user's last activity
  - `logins` string[], required — Array of login identifiers associated with this user
  - `name` string — User's full name (optional)
  - `numDaysActiveDesktopPastMonth` integer, required — Number of days the user was active on desktop in the past month
  - `numDaysActiveDesktopPastWeek` integer, required — Number of days the user was active on desktop in the past week
  - `numDaysActiveMobilePastMonth` integer, required — Number of days the user was active on mobile in the past month
  - `numDaysActiveMobilePastWeek` integer, required — Number of days the user was active on mobile in the past week
  - `numDaysActivePastMonth` integer, required — Total number of days the user was active in the past month
  - `numDaysActivePastWeek` integer, required — Total number of days the user was active in the past week
  - `numLongReadEntriesPastMonth` integer, required — Number of long-read articles read in the past month
  - `numLongReadEntriesPastWeek` integer, required — Number of long-read articles read in the past week
  - `numReadEntriesPastMonth` integer, required — Total number of articles read in the past month
  - `numReadEntriesPastWeek` integer, required — Total number of articles read in the past week
  - `numTaggedEntriesPastMonth` integer, required — Number of articles tagged in the past month
  - `numTaggedEntriesPastWeek` integer, required — Number of articles tagged in the past week
  - `role` 'admin' | 'member', required — User's role in the organization
  - `totalReadingTimePastMonth` integer, required — Total reading time in seconds for the past month
  - `totalReadingTimePastWeek` integer, required — Total reading time in seconds for the past week
  - `userId` string, uuid, required — Unique identifier for the user

## Other responses

- `401` — Unauthorized - Invalid or missing API key
- `403` — Forbidden - Insufficient permissions to access enterprise user data

---

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