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

# members.list

> Public Management API. Organization API-key callers require `members:read`; dashboard callers require current organization membership and authorization.



## OpenAPI

````yaml /api-reference/openapi.management.json get /v1/members
openapi: 3.0.3
info:
  title: Polymorfa Management API
  version: 1.0.0
  description: >-
    Public customer management surface (25 HTTP operations).


    Each public `/v1` operation declares its supported credential: a scoped
    `titan_` organization key or a verified dashboard JWT, or dashboard-only
    authorization when a specific user's authority is required. The `/v1`
    boundary rejects `titan_pt_` project tokens.


    Most transitional body/response schemas remain loose (`additionalProperties:
    true`); session-control operations use explicit strict schemas.
servers:
  - url: https://api.polymorfa.com
  - url: http://localhost:8080
    description: local dev
security: []
paths:
  /v1/members:
    get:
      tags:
        - members
      summary: members.list
      description: >-
        Public Management API. Organization API-key callers require
        `members:read`; dashboard callers require current organization
        membership and authorization.
      operationId: members.list
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataEnvelope'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
      security:
        - ApiKeyAuth: []
        - ConsoleSession: []
components:
  schemas:
    DataEnvelope:
      type: object
      properties:
        data:
          description: Operation result.
      required:
        - data
    ErrorEnvelope:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
          required:
            - code
      required:
        - error
  responses:
    Unauthorized:
      description: Missing/invalid credential for this audience.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorEnvelope'
    Forbidden:
      description: Authenticated but lacks the required scope/role/audience.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorEnvelope'
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      description: >-
        Polymorfa server credential: a scoped titan_ organization key. Public
        /v1 operations reject titan_pt_ project tokens.
    ConsoleSession:
      type: http
      scheme: bearer
      description: >-
        Verified dashboard JWT for signed-in Console requests. This is not a
        server credential.

````