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

# List members

> Lists every member of the calling organization with their effective role, and marks the one member ownership resolves to. Requires the `members:read` scope.



## OpenAPI

````yaml get /management/v1/members
openapi: 3.1.0
info:
  description: Schema-driven generative API that orchestrates LLM-powered workflows.
  title: Task API
  version: 3.0.0
servers:
  - description: Production
    url: https://api.opper.ai
  - description: Local development
    url: http://localhost:8080
security:
  - BearerAuth: []
tags:
  - description: Schema-driven function management and execution
    name: Functions
  - description: OpenAI-compatible chat completions
    name: Chat
  - description: OpenAI Responses API compatible endpoint
    name: Responses
  - description: Google-compatible interactions endpoint
    name: Interactions
  - description: Model registry and capabilities
    name: Models
  - description: Synchronous image generation
    name: Images
  - description: Text-to-speech and speech-to-text
    name: Audio
  - description: Asynchronous video generation
    name: Videos
  - description: Reusable file storage for media inputs and generated outputs
    name: Files
  - description: Async generation status and downloads
    name: Artifacts
  - description: OpenAI-compatible embeddings
    name: Embeddings
  - description: Recorded HTTP request/response generations
    name: Generations
  - description: System health and status
    name: System
  - description: Roundtable endpoint — fan out a query to multiple LLMs and combine results
    name: Roundtable
  - description: Web search, fetch, and other utility tools
    name: Tools
  - description: Caller identity, credits, and usage
    name: Account
  - description: >-
      Programmatic project and API-key management. Authenticates with an
      `op-mak-…` management token; available on the control_plane and enterprise
      plans.
    name: Management
paths:
  /management/v1/members:
    get:
      tags:
        - Management
      summary: List members
      description: >-
        Lists every member of the calling organization with their effective
        role, and marks the one member ownership resolves to. Requires the
        `members:read` scope.
      operationId: listManagementMembers
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data:
                    items:
                      $ref: '#/components/schemas/ManagementMember'
                    type: array
                  meta:
                    properties:
                      total_count:
                        description: Total items in the collection.
                        type: integer
                    type: object
                type: object
          description: Successful response
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
        '401':
          description: Unauthorized - missing or invalid API key
        '403':
          content:
            application/json:
              schema:
                properties:
                  error:
                    type: string
                  required_scope:
                    description: Present on the scope refusal.
                    type: string
                type: object
          description: >-
            The token lacks the scope this endpoint requires (`required_scope`
            is returned). Presenting a runtime `op-…` key instead of a
            management `op-mak-…` token also lands here.
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Internal server error
      security:
        - ManagementBearer: []
components:
  schemas:
    ManagementMember:
      properties:
        created_at:
          description: >-
            When the person's Opper account was created (not when they joined
            this organization).
          format: date-time
          type: string
        email:
          description: The member's email address. An empty string when none is on file.
          type: string
        is_owner:
          description: >-
            True for the one member ownership resolves to. The owner cannot be
            removed through this API; ownership is transferred in the platform.
          type: boolean
        name:
          description: The member's display name. An empty string when none is set.
          type: string
        role:
          description: >-
            The member's effective role: owner, admin, developer, viewer, or the
            name of one of the organization's custom roles. An empty string for
            a blocked member.
          type: string
        uuid:
          description: >-
            The member's user UUID. Pass it to DELETE
            /management/v1/members/{user_uuid}.
          type: string
      required:
        - uuid
        - email
        - name
        - role
        - is_owner
      type: object
    ErrorResponse:
      properties:
        error:
          properties:
            code:
              type: string
            details:
              description: Any value
            message:
              type: string
          required:
            - code
            - message
          type: object
        meta:
          type: object
      required:
        - error
      type: object
  securitySchemes:
    BearerAuth:
      bearerFormat: API Key
      description: API key authentication. Pass your API key as a Bearer token.
      scheme: bearer
      type: http
    ManagementBearer:
      bearerFormat: Management API Key
      description: >-
        Management API authentication. Pass an `op-mak-…` management token as a
        Bearer token. Runtime `op-…` API keys are rejected with 403 — they
        belong on the data-plane endpoints. Mint a management key from the
        platform UI under Settings → API keys.
      scheme: bearer
      type: http

````