> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mrassistant.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List All Users

> List all users with tenant information.

**Returns:**
- User details (username, email, role)
- Associated tenant info
- Account status (active, verified)



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /admin/users
openapi: 3.1.0
info:
  title: Backend - Multilingual Voice Agent System
  description: FastAPI backend for multilingual voice agents with tool use
  version: 1.0.0
servers: []
security: []
paths:
  /admin/users:
    get:
      tags:
        - admin
      summary: List All Users
      description: |-
        List all users with tenant information.

        **Returns:**
        - User details (username, email, role)
        - Associated tenant info
        - Account status (active, verified)
      operationId: list_all_users_admin_users_get
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 1000
            minimum: 1
            default: 100
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Offset
        - name: role
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: 'Filter by role: business, developer, admin'
            title: Role
          description: 'Filter by role: business, developer, admin'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/UserSummary'
                title: Response List All Users Admin Users Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    UserSummary:
      properties:
        id:
          type: string
          title: Id
        username:
          type: string
          title: Username
        email:
          type: string
          title: Email
        role:
          type: string
          title: Role
        tenant_id:
          type: string
          title: Tenant Id
        tenant_name:
          type: string
          title: Tenant Name
        is_active:
          type: boolean
          title: Is Active
        email_verified:
          type: boolean
          title: Email Verified
        created_at:
          type: string
          format: date-time
          title: Created At
        last_login:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Login
      type: object
      required:
        - id
        - username
        - email
        - role
        - tenant_id
        - tenant_name
        - is_active
        - email_verified
        - created_at
      title: UserSummary
      description: User summary for admin view.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````