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

# List team members

> List 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: NeetoRecord Team Members APIs
  version: 1.0.0
servers:
  - description: NeetoRecord APIs
    url: https://{your-subdomain}.neetorecord.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 team members
      description: List team members in the workspace.
      parameters:
        - $ref: '#/components/parameters/api_key_header'
        - $ref: '#/components/parameters/accept_header'
        - in: query
          name: email
          description: Filter team members by email address.
          required: false
          schema:
            type: string
            format: email
            example: oliver@example.com
        - $ref: '#/components/parameters/page_number_param'
        - $ref: '#/components/parameters/page_size_param'
      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: >-
        API key. Refer to [Authentication](/getting-started/authentication) for
        more information.
      required: true
      schema:
        type: string
    accept_header:
      in: header
      name: Accept
      description: Must be `application/json`.
      required: true
      schema:
        type: string
        enum:
          - application/json
        default: application/json
    page_number_param:
      in: query
      name: page_number
      description: Page number. If absent, all results are returned.
      required: false
      schema:
        type: integer
    page_size_param:
      in: query
      name: page_size
      description: Number of results per page. Defaults to 30.
      required: false
      schema:
        type: integer
  schemas:
    team_member_list_response:
      allOf:
        - 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
          format: uuid
          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
        active:
          type: boolean
          example: true
        organization_role:
          type: string
          example: Admin
    pagination:
      type: object
      properties:
        total_records:
          type: integer
          description: Total number of records.
          example: 95
        total_pages:
          type: integer
          description: Total number of pages available.
          example: 4
        current_page_number:
          type: integer
          description: Current page number.
          example: 1
        page_size:
          type: integer
          description: Number of records per page.
          example: 30

````