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

# List Team Members



## OpenAPI

````yaml GET /v1/team/members
openapi: 3.0.0
info:
  title: Wardin API
  description: AI governance & observability platform — external REST API
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /v1/team/members:
    get:
      tags:
        - team
      summary: List all team members for the tenant
      operationId: TeamController_listMembers
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TeamMemberDto'
      security:
        - bearer: []
components:
  schemas:
    TeamMemberDto:
      type: object
      properties:
        id:
          type: string
        email:
          type: string
        role:
          type: string
          enum:
            - developer
            - manager
            - admin
        clerkUserId:
          type: string
          nullable: true
        name:
          type: string
          nullable: true
        imageUrl:
          type: string
          nullable: true
        joinedAt:
          format: date-time
          type: string
      required:
        - id
        - email
        - role
        - clerkUserId
        - name
        - imageUrl
        - joinedAt
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````