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

# Get member

> Read one member, including the teams they reach through team-scoped role bindings. Personal workspaces are not listed: they are not access an administrator manages.



## OpenAPI

````yaml GET /api/organization/members/{userId}
openapi: 3.1.0
info:
  title: LangWatch API
  version: 1.0.0
  description: LangWatch openapi spec
servers:
  - url: https://app.langwatch.ai
security:
  - project_api_key: []
paths:
  /api/organization/members/{userId}:
    get:
      tags:
        - Members
      description: >-
        Read one member, including the teams they reach through team-scoped role
        bindings. Personal workspaces are not listed: they are not access an
        administrator manages.
      operationId: getOrganizationMember
      parameters:
        - in: path
          name: userId
          schema:
            type: string
            minLength: 1
          required: true
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  userId:
                    type: string
                  role:
                    type: string
                    enum:
                      - ADMIN
                      - MEMBER
                      - EXTERNAL
                  disabled:
                    type: boolean
                  disabledAt:
                    type:
                      - string
                      - 'null'
                  createdAt:
                    type: string
                  updatedAt:
                    type: string
                  user:
                    type: object
                    properties:
                      id:
                        type: string
                      name:
                        type:
                          - string
                          - 'null'
                      email:
                        type:
                          - string
                          - 'null'
                    required:
                      - id
                      - name
                      - email
                  teams:
                    type: array
                    items:
                      type: object
                      properties:
                        teamId:
                          type: string
                        teamName:
                          type: string
                        role:
                          type: string
                          enum:
                            - ADMIN
                            - MEMBER
                            - VIEWER
                            - CUSTOM
                        customRoleId:
                          type:
                            - string
                            - 'null'
                        customRoleName:
                          type:
                            - string
                            - 'null'
                      required:
                        - teamId
                        - teamName
                        - role
                        - customRoleId
                        - customRoleName
                required:
                  - userId
                  - role
                  - disabled
                  - disabledAt
                  - createdAt
                  - updatedAt
                  - user
                  - teams
      security:
        - admin_api_key: []
components:
  securitySchemes:
    project_api_key:
      type: apiKey
      in: header
      name: X-Auth-Token
      description: >-
        Project API key for sending traces and accessing project-scoped
        resources. Format: sk-lw-... (no underscore). Obtain one by creating a
        project via the Admin API or the LangWatch UI.
    admin_api_key:
      type: http
      scheme: bearer
      description: >-
        Admin API key for organization-level operations (managing projects, API
        keys). Create one in Settings > API Keys or via POST /api/api-keys.
        Format: sk-lw-{id}_{secret}.

````