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

# List users

> Returns all team members.

<Note>
  **Required scope:** `USERS_READ`
</Note>

Returns all team members in a single response. This endpoint is not paginated.


## OpenAPI

````yaml GET /v2/api/users
openapi: 3.0.3
info:
  title: Allo API
  description: >-
    Allo API provides programmatic access to your Allo account, allowing you to
    manage webhooks, retrieve calls and contacts, and send SMS messages.


    All requests to `/v1/api/**` endpoints automatically go through quota
    checking and scope validation.
  version: 1.0.0
  contact:
    name: Allo Support
servers:
  - url: https://api.withallo.com
    description: Production server
security: []
tags:
  - name: Summary Templates
    description: >-
      Manage call summary templates that control how AI-generated call summaries
      are structured for your team.
  - name: Webhooks
    description: >-
      Manage webhook endpoints to receive real-time notifications about events
      in your Allo account. Each endpoint subscribes to one or more event topics
      and is verified with a signing secret.
  - name: Calls
    description: >-
      Retrieve and search call records with filtering and pagination. Filter
      calls by your Allo phone number.
  - name: Contacts
    description: >-
      Search and retrieve contact information with sorting and pagination.
      Includes engagement level tracking.
  - name: SMS
    description: Send SMS messages to phone numbers using your Allo numbers.
  - name: Phone Numbers
    description: Retrieve information about your Allo phone numbers.
  - name: Analytics
    description: Pre-computed call metrics, team performance, and outbound dial funnel
  - name: CRM
    description: Manage people, companies, and deals in your CRM.
paths:
  /v2/api/users:
    get:
      tags:
        - Users
      summary: List users
      description: Returns all team members.
      operationId: listUsers
      parameters:
        - name: role
          in: query
          schema:
            type: string
            enum:
              - ADMIN
              - MANAGER
              - MEMBER
        - name: status
          in: query
          schema:
            type: string
            enum:
              - ACTIVE
              - BLOCKED
            default: ACTIVE
      responses:
        '200':
          description: List of users
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/User'
              example:
                data:
                  - id: usr-abc123
                    name: Alex Kim
                    email: alex@acme.com
                    role: ADMIN
                    status: ACTIVE
                    image_url: https://storage.withallo.com/avatars/usr-abc123.jpg
                  - id: usr-def456
                    name: Jordan Lee
                    email: jordan@acme.com
                    role: MEMBER
                    status: ACTIVE
                    image_url: null
        '401':
          $ref: '#/components/responses/ApiUnauthorized'
        '429':
          $ref: '#/components/responses/ApiRateLimited'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    User:
      type: object
      properties:
        id:
          type: string
          example: usr-abc123
        name:
          type: string
          example: Adrien
        email:
          type: string
          example: adrien@company.com
        role:
          type: string
          enum:
            - ADMIN
            - MANAGER
            - MEMBER
        status:
          type: string
          enum:
            - ACTIVE
            - BLOCKED
        image_url:
          type: string
          nullable: true
    ApiError:
      type: object
      properties:
        error:
          type: object
          properties:
            type:
              type: string
            code:
              type: string
            message:
              type: string
            retryable:
              type: boolean
            request_id:
              type: string
            retry_after_seconds:
              type: integer
              nullable: true
  responses:
    ApiUnauthorized:
      description: Invalid or missing API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    ApiRateLimited:
      description: Rate limit exceeded
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization

````