v1

latestOpenAPI 3.1.02026-07-244727109.8 KB
Users

List 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
get/enterprise/users

Query parameters

format'csv'

Response format (omit for JSON, use 'csv' for CSV export)

Response

Successfully retrieved list of users

emailstring email required

User's email address

firstLogininteger required

EPOCH timestamp in milliseconds of the user's first login

givenNamestring

User's given/first name (optional)

isAdminboolean required

Whether the user has administrator privileges

joinDateinteger required

EPOCH timestamp in milliseconds when the user joined

lastActivityinteger required

EPOCH timestamp in milliseconds of the user's last activity

loginsstring[] required

Array of login identifiers associated with this user

namestring

User's full name (optional)

numDaysActiveDesktopPastMonthinteger required

Number of days the user was active on desktop in the past month

numDaysActiveDesktopPastWeekinteger required

Number of days the user was active on desktop in the past week

numDaysActiveMobilePastMonthinteger required

Number of days the user was active on mobile in the past month

numDaysActiveMobilePastWeekinteger required

Number of days the user was active on mobile in the past week

numDaysActivePastMonthinteger required

Total number of days the user was active in the past month

numDaysActivePastWeekinteger required

Total number of days the user was active in the past week

numLongReadEntriesPastMonthinteger required

Number of long-read articles read in the past month

numLongReadEntriesPastWeekinteger required

Number of long-read articles read in the past week

numReadEntriesPastMonthinteger required

Total number of articles read in the past month

numReadEntriesPastWeekinteger required

Total number of articles read in the past week

numTaggedEntriesPastMonthinteger required

Number of articles tagged in the past month

numTaggedEntriesPastWeekinteger required

Number of articles tagged in the past week

role'admin' | 'member' required

User's role in the organization

totalReadingTimePastMonthinteger required

Total reading time in seconds for the past month

totalReadingTimePastWeekinteger required

Total reading time in seconds for the past week

userIdstring uuid required

Unique identifier for the user

Example response

[
  {
    "email": "aaron@feedly.com",
    "firstLogin": 1714596180521,
    "givenName": "Aaron",
    "isAdmin": true,
    "joinDate": 1714596180521,
    "lastActivity": 1737658718941,
    "logins": [
      "aaron@feedly.com"
    ],
    "name": "Aaron O'Maley",
    "numDaysActiveDesktopPastMonth": 15,
    "numDaysActiveDesktopPastWeek": 3,
    "numDaysActiveMobilePastMonth": 10,
    "numDaysActiveMobilePastWeek": 2,
    "numDaysActivePastMonth": 20,
    "numDaysActivePastWeek": 4,
    "numLongReadEntriesPastMonth": 5,
    "numLongReadEntriesPastWeek": 1,
    "numReadEntriesPastMonth": 150,
    "numReadEntriesPastWeek": 35,
    "numTaggedEntriesPastMonth": 12,
    "numTaggedEntriesPastWeek": 3,
    "role": "admin",
    "totalReadingTimePastMonth": 18000,
    "totalReadingTimePastWeek": 3600,
    "userId": "23242fbb-f101-4f86-972f-b17be38572f4"
  }
]