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

# List team members

> Lists all team members in the workspace.

<Warning>
  **Deprecated:** This is a **v1** endpoint. It will continue to work, but we
  recommend migrating to the [v2 equivalent](/api-reference) for improved REST
  compliance (correct HTTP status codes, consistent response envelopes, and
  hyphenated URLs).
</Warning>

<Info>Replace `{your-subdomain}` with your workspace's subdomain. <br /> Learn how to find your subdomain in [Workspace subdomain](/getting-started/workspace-subdomain).</Info>


## OpenAPI

````yaml /bundled-v1/team-members.yaml GET /team_members
openapi: 3.0.3
info:
  title: NeetoDesk Team Members APIs
  version: 1.0.0
servers:
  - description: NeetoDesk APIs
    url: https://{your-subdomain}.neetodesk.com/api/external/v1
    variables:
      your-subdomain:
        default: spinkart
        description: >-
          Replace **spinkart** with your [workspace's
          subdomain](/getting-started/workspace-subdomain).
security: []
tags:
  - name: Team Members
    description: APIs to manage team members in the workspace.
paths:
  /team_members:
    get:
      tags:
        - Team Members
      summary: List all team members
      description: Lists all team members in the workspace.
      parameters:
        - $ref: '#/components/parameters/api_key_header'
        - in: query
          name: page
          description: >-
            Retrieve paginated results by specifying the desired page number.
            Defaults to 1 if not specified.
          required: false
          schema:
            type: integer
        - $ref: '#/components/parameters/page_size_param'
        - in: query
          name: email
          description: >-
            Filter team members by email address. The search is
            case-insensitive.
          required: false
          schema:
            type: string
            format: email
        - $ref: '#/components/parameters/accept_header'
      responses:
        '200':
          description: OK - Request succeeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/team_member_list_response'
components:
  parameters:
    api_key_header:
      in: header
      name: X-Api-Key
      description: >-
        Use the X-Api-Key header to provide your workspace API key. Refer to
        [Authentication](/getting-started/authentication) for more information.
      required: true
      schema:
        type: string
        default: your-api-key
    page_size_param:
      in: query
      name: page_size
      description: >-
        Set the number of results returned in the response. Defaulting to 30
        when omitted.
      required: false
      schema:
        type: integer
    accept_header:
      in: header
      name: Accept
      description: >-
        Specifies the expected response format. Must be set to
        `application/json` for proper API communication.
      required: true
      schema:
        type: string
        enum:
          - application/json
        default: application/json
  schemas:
    team_member_list_response:
      type: object
      properties:
        team_members:
          type: array
          items:
            $ref: '#/components/schemas/team_member'
        pagination:
          $ref: '#/components/schemas/Pagination'
    team_member:
      type: object
      properties:
        id:
          type: string
          example: aaaabbbb-cccc-dddd-eeee-ffff00001111
        email:
          type: string
          example: oliver@example.com
        first_name:
          type: string
          example: Oliver
        last_name:
          type: string
          example: Smith
        time_zone:
          type: string
          example: Asia/Kolkata
        profile_image_url:
          type: string
          nullable: true
          example: null
        organization_role:
          type: string
          example: Admin
        active:
          type: boolean
          example: true
    Pagination:
      type: object
      properties:
        total_records:
          type: integer
          example: 95
        total_pages:
          type: integer
          example: 4
        current_page_number:
          type: integer
          example: 1
        page_size:
          type: integer
          example: 30

````