---
title: "Get workspace users"
method: GET
path: "/api/v1/workspaces/users"
tags: ["workspace", "users"]
---

# Get workspace users

`GET /api/v1/workspaces/users`

Retrieve a paginated list of users in the current workspace.

    This endpoint allows you to:
    - List all users in the workspace
    - Paginate through large user lists

    **Use cases:**
    - Displaying team members in UI
    - Managing workspace membership
    - Auditing user access

## Query parameters

- `limit` integer
- `offset` integer

## Response `200`

This response returns a paginated list of users in the workspace.

- object — This response returns a paginated list of users in the workspace.
  - `limit` number, required — The maximum number of items to return.
  - `offset` number, required — The number of items to skip before starting to collect the result set.
  - `hasNextPage` boolean, required — Indicates if there are more pages available.
  - `data` object[], required
    - `isInitialized` boolean
    - `created` string, date-time, required
    - `uid` string, required
    - `id` string, required
    - `picture` string, uri, required
    - `email` string, email, required
    - `name` string, required
    - `updated` string, date-time, required
    - `workspaceTeams` object, required
    - `subscriptionStatus` string
    - `lastActive` string, date-time
    - `lastActiveRefreshedAt` string, date-time
    - `preferences` object
      - `ossAutoRedirect` boolean
      - `sceneOrder` 'manual' | 'created' | 'updated' | 'name'
      - `initialRedirect` 'dashboard' | 'lastEditedScene' | 'lastVisitedScene' | 'privateCollection'
      - `hideDeprecatedFonts` boolean
      - `enableAutoSceneNamingForPrivateCollections` boolean
      - `blockCommentEmailNotifications` boolean
    - `lastVisitedScenes` string[]
    - `lastEditedScenes` string[]
    - `rateLimits` object
      - `textToDiagram` object
      - `diagramToCode` object
      - `nameScene` object
    - `libraryVersion` number
    - `role` 'member' | 'admin', required

## Other responses

- `400` — This response indicates that the request was malformed or contained invalid parameters.
- `401` — This response indicates that the client must authenticate to access the requested resource.
- `403` — This response indicates that the client does not have permission to access the requested resource.

---

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