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

# Get Current Workspace Members



## OpenAPI

````yaml /langsmith/langsmith-platform-openapi.json get /api/v1/workspaces/current/members
openapi: 3.1.0
info:
  title: LangSmith
  description: >+
    The LangSmith API is used to programmatically create and manage LangSmith
    resources.


    ## Host

    https://api.smith.langchain.com


    ## Authentication

    To authenticate with the LangSmith API, set the `X-Api-Key` header

    to a valid [LangSmith API
    key](https://docs.langchain.com/langsmith/create-account-api-key#create-an-api-key).

  version: 0.1.0
servers:
  - url: /
security: []
tags:
  - name: run
    x-group: Tracing
  - name: runs
    x-group: Tracing
  - name: sessions
    x-group: Tracing
  - name: tracer-sessions
    x-group: Tracing
  - name: datasets
    x-group: Datasets
  - name: examples
    x-group: Datasets
  - name: evaluators
    x-group: Evaluation
  - name: experiment-view-overrides
    x-group: Evaluation
  - name: experiments
    x-group: Evaluation
  - name: annotation-queues
    x-group: Feedback & Annotation
  - name: annotation_queues
    x-group: Feedback & Annotation
  - name: feedback
    x-group: Feedback & Annotation
  - name: feedback-configs
    x-group: Feedback & Annotation
  - name: alert_rules
    x-group: Monitoring
  - name: bulk-exports
    x-group: Monitoring
  - name: charts
    x-group: Monitoring
  - name: commits
    x-group: Prompts & Playground
  - name: directories
    x-group: Prompts & Playground
  - name: hub_environments
    x-group: Prompts & Playground
  - name: playground-settings
    x-group: Prompts & Playground
  - name: prompt-webhooks
    x-group: Prompts & Playground
  - name: prompts
    x-group: Prompts & Playground
  - name: tag-transitions
    x-group: Prompts & Playground
  - name: comments
    x-group: Prompt Hub
  - name: likes
    x-group: Prompt Hub
  - name: optimization-jobs
    x-group: Prompt Hub
  - name: ownerships
    x-group: Prompt Hub
  - name: repos
    x-group: Prompt Hub
  - name: settings
    x-group: Prompt Hub
  - name: tags
    x-group: Prompt Hub
  - name: integrations
    x-group: Integrations & Tools
  - name: mcp
    x-group: Integrations & Tools
  - name: mcp_vendors
    x-group: Integrations & Tools
  - name: oauth
    x-group: Integrations & Tools
  - name: tools
    x-group: Integrations & Tools
  - name: gateway-policies
    x-group: LLM Gateway
  - name: sandboxes
    x-group: Sandboxes
  - name: issues
    x-group: Issues
  - name: issues-agent
    x-group: Issues
  - name: Organizations
    x-group: Administration
  - name: SCIM Tokens
    x-group: Administration
  - name: TTL Settings
    x-group: Administration
  - name: access_policies
    x-group: Administration
  - name: api-key
    x-group: Administration
  - name: audit-logs
    x-group: Administration
  - name: auth
    x-group: Administration
  - name: aws_marketplace
    x-group: Administration
  - name: data_planes
    x-group: Administration
  - name: me
    x-group: Administration
  - name: orgs
    x-group: Administration
  - name: service-accounts
    x-group: Administration
  - name: tenant
    x-group: Administration
  - name: ttl-settings
    x-group: Administration
  - name: usage-limits
    x-group: Administration
  - name: workspaces
    x-group: Administration
  - name: ace
    x-group: System
  - name: backfills
    x-group: System
  - name: features
    x-group: System
  - name: info
    x-group: System
  - name: model-price-map
    x-group: System
  - name: public
    x-group: System
  - name: threads
    x-group: System
  - name: agents
    x-hidden: true
  - name: beacon
    x-hidden: true
  - name: engine-trial
  - name: fleet
  - name: fleet auth
    x-hidden: true
  - name: fleet credentials
    x-hidden: true
  - name: fleet github-app
    x-hidden: true
  - name: fleet integrations
    x-hidden: true
  - name: fleet mcp
    x-hidden: true
  - name: fleet threads
    x-hidden: true
  - name: fleet trigger-templates
    x-hidden: true
  - name: fleet triggers
    x-hidden: true
  - name: fleet usage
    x-hidden: true
  - name: fleet_webhooks
    x-hidden: true
  - name: health
  - name: internal
    x-hidden: true
  - name: metrics
    x-hidden: true
  - name: nps
    x-hidden: true
  - name: sandboxes-internal
    x-hidden: true
  - name: skills
    x-hidden: true
paths:
  /api/v1/workspaces/current/members:
    get:
      tags:
        - workspaces
      summary: Get Current Workspace Members
      operationId: get_current_workspace_members_api_v1_workspaces_current_members_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TenantMembers'
      security:
        - API Key: []
        - Tenant ID: []
        - Bearer Auth: []
components:
  schemas:
    TenantMembers:
      properties:
        tenant_id:
          type: string
          format: uuid
          title: Tenant Id
        members:
          items:
            $ref: '#/components/schemas/MemberIdentity'
          type: array
          title: Members
        pending:
          items:
            $ref: '#/components/schemas/PendingIdentity'
          type: array
          title: Pending
      type: object
      required:
        - tenant_id
        - members
        - pending
      title: TenantMembers
      description: Tenant members schema.
    MemberIdentity:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        organization_id:
          type: string
          format: uuid
          title: Organization Id
        tenant_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Tenant Id
        created_at:
          type: string
          format: date-time
          title: Created At
        user_id:
          type: string
          format: uuid
          title: User Id
        ls_user_id:
          type: string
          format: uuid
          title: Ls User Id
        read_only:
          type: boolean
          title: Read Only
          deprecated: true
        role_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Role Id
        role_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Role Name
        access_scope:
          $ref: '#/components/schemas/AccessScope'
          default: workspace
        email:
          anyOf:
            - type: string
            - type: 'null'
          title: Email
        full_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Full Name
        avatar_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Avatar Url
        linked_login_methods:
          items:
            $ref: '#/components/schemas/ProviderUserSlim'
          type: array
          title: Linked Login Methods
          default: []
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        is_disabled:
          type: boolean
          title: Is Disabled
          default: false
        org_role_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Org Role Id
        org_role_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Org Role Name
      type: object
      required:
        - id
        - organization_id
        - created_at
        - user_id
        - ls_user_id
        - read_only
      title: MemberIdentity
    PendingIdentity:
      properties:
        email:
          type: string
          title: Email
        read_only:
          type: boolean
          title: Read Only
          default: false
          deprecated: true
        role_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Role Id
        workspace_ids:
          anyOf:
            - items:
                type: string
                format: uuid
              type: array
            - type: 'null'
          title: Workspace Ids
        workspace_role_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Workspace Role Id
        password:
          anyOf:
            - type: string
            - type: 'null'
          title: Password
        full_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Full Name
        access_scope:
          $ref: '#/components/schemas/AccessScope'
          default: workspace
        id:
          type: string
          format: uuid
          title: Id
        user_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: User Id
        tenant_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Tenant Id
        organization_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Organization Id
        created_at:
          type: string
          format: date-time
          title: Created At
        role_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Role Name
        org_role_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Org Role Id
        org_role_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Org Role Name
      type: object
      required:
        - email
        - id
        - created_at
      title: PendingIdentity
    AccessScope:
      type: string
      enum:
        - organization
        - workspace
      title: AccessScope
    ProviderUserSlim:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        provider:
          anyOf:
            - $ref: '#/components/schemas/AuthProvider'
            - type: 'null'
        ls_user_id:
          type: string
          format: uuid
          title: Ls User Id
        saml_provider_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Saml Provider Id
        provider_user_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Provider User Id
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
        email:
          anyOf:
            - type: string
            - type: 'null'
          title: Email
        full_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Full Name
        first_name:
          anyOf:
            - type: string
            - type: 'null'
          title: First Name
        last_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Name
        username:
          anyOf:
            - type: string
            - type: 'null'
          title: Username
        is_disabled:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Disabled
        provisioning_method:
          anyOf:
            - $ref: '#/components/schemas/ProvisioningMethod'
            - type: 'null'
        email_confirmed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Email Confirmed At
      type: object
      required:
        - id
        - ls_user_id
        - created_at
        - updated_at
      title: ProviderUserSlim
    AuthProvider:
      type: string
      enum:
        - email
        - supabase:non-sso
        - supabase:sso
        - oidc
        - custom-oidc
      title: AuthProvider
    ProvisioningMethod:
      type: string
      enum:
        - scim
        - saml:jit
        - bootstrap
      title: ProvisioningMethod
  securitySchemes:
    API Key:
      type: apiKey
      in: header
      name: X-API-Key
    Tenant ID:
      type: apiKey
      in: header
      name: X-Tenant-Id
    Bearer Auth:
      type: http
      description: >-
        Bearer tokens are used to authenticate from the UI. Must also specify
        x-tenant-id or x-organization-id (for org scoped apis).
      scheme: bearer

````