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

# List users in organization

> Returns the list of users in the authenticated caller organization, filtered by access role visibility rules.



## OpenAPI

````yaml /api-reference/openapi.yaml get /api/user/list
openapi: 3.0.3
info:
  title: Tether Relay and Tether API
  version: 1.0.0
  description: >-
    Route-derived OpenAPI contract generated from tether-relay backend sources.
    Regenerate with scripts/sync-openapi-from-backend.mjs.
servers:
  - url: https://your-instance.example.com
    description: Production
  - url: http://localhost:2212
    description: Local API service
security: []
tags:
  - name: AI
  - name: Applications
  - name: Approval
  - name: Auth
  - name: Automations
  - name: Calls
  - name: Campaigns
  - name: Contact Analytics
  - name: Contact Metrics
  - name: Contact Notes
  - name: Contacts
  - name: Conversation Monitor
  - name: Conversations
  - name: Departments
  - name: Email
  - name: Escalation Dashboard
  - name: Event Logs
  - name: Google Sheets
  - name: Marketplace
  - name: Messages
  - name: Notification Sounds
  - name: Notifications
  - name: Org Snapshots
  - name: Organizations
  - name: Outreach
  - name: Outreach Metrics
  - name: Outreach Sources
  - name: Pipelines
  - name: Processes
  - name: Prompts
  - name: Reminders
  - name: Sms
  - name: Templates
  - name: Traces
  - name: Training
  - name: Upload
  - name: User Snapshots
  - name: Users
  - name: Vertical
  - name: Webchats
  - name: Webhook
paths:
  /api/user/list:
    get:
      tags:
        - Users
      summary: List users in organization
      description: >-
        Returns the list of users in the authenticated caller organization,
        filtered by access role visibility rules.
      operationId: get_user_list
      responses:
        '200':
          description: Users list returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserListResponse'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserErrorResponse'
        '500':
          description: Failed to fetch users list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    UserListResponse:
      type: array
      items:
        $ref: '#/components/schemas/UserListItem'
      example:
        - _id: 64ee9a8b1e7f2a0011223399
          fullName: Alex Rep
          email: alex@acme.example
          accessRole: DEPARTMENT_HEAD
          organizationId: 64ee9a8b1e7f2a0011223344
    UserErrorResponse:
      type: object
      description: >-
        Generic error envelope returned by Users endpoints. Most paths only
        include `error`; some add `details` for diagnostic context.
      properties:
        error:
          type: string
        details:
          type: string
      required:
        - error
      additionalProperties: true
      example:
        error: User not found
        details: No user with id 64ee9a8b1e7f2a0011223399
    UserListItem:
      type: object
      description: >-
        Projected User row returned by /api/user/list. Includes only fields the
        controller selects from the User collection.
      properties:
        _id:
          type: string
        fullName:
          type: string
        email:
          type: string
          format: email
        phoneNumber:
          type: string
        designation:
          type: string
        sinchPhoneNumber:
          type: string
        accessRole:
          type: string
        organizationId:
          type: string
        departmentId:
          type: string
          nullable: true
        loginDisabled:
          type: boolean
      additionalProperties: true
      example:
        _id: 64ee9a8b1e7f2a0011223399
        fullName: Alex Rep
        email: alex@acme.example
        phoneNumber: '+14155550199'
        designation: Senior Account Executive
        accessRole: DEPARTMENT_HEAD
        organizationId: 64ee9a8b1e7f2a0011223344
        departmentId: 64eea1110000000000000020
        loginDisabled: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````