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

# List users

`GET /user-service/users`

List and filter users for the specified account

## Query parameters

- `search` string
- `email` string, email
- `type` 'USER' | 'SA'
- `role_ids` string[]
- `team_ids` string[]
- `limit` integer
- `offset` integer

## Response `200`

Array of users matching the search criteria

- UserListResponse
  - `users` User[]
    - `id` string, uuid, required — Unique identifier for the user
    - `account_id` string, required — Account identifier this user belongs to
    - `name` string, required — User's full name
    - `email` string, email, nullable — User's email address
    - `description` string, nullable — User's description or bio
    - `profile_photo` string, uri, nullable — URL to user's profile photo
    - `created_at` string, date-time, required — When the user was created
    - `last_login` string, date-time, nullable — User's last login time
    - `email_verified` boolean — Whether the user's email has been verified
    - `assigned_role_ids` string[] — List of role IDs directly assigned to this user
    - `team_ids` string[] — List of team IDs this user belongs to
    - `connection` string, nullable — Connection/authentication provider used by the user
    - `created_by` string, uuid, nullable — User ID of the person who created this user
    - `created_by_name` string, nullable — Name of the user who created this user
    - `system_generated` boolean — Whether this service account was automatically created by the system during migrations or other automated processes
    - `type` 'USER' | 'SA' — User type - either regular USER or Service Account (SA)
  - `total_count` integer — Total number of users matching the filter criteria

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `403` — Forbidden

---

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