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

# List workspace members (member-only)



## OpenAPI

````yaml /openapi.json get /api/workspaces/{id}/members
openapi: 3.1.0
info:
  title: Syvon API
  version: 1.0.0
  description: >-
    Two client-facing surfaces: the Portal management plane (syvon.ai/api/*,
    portal JWT) and the Brain read plane (brain.syvon.ai/v1/*, workspace key
    sk_ws_…). Schemas are generated from the @syvon/sdk TypeScript types — the
    shipped .d.ts files are the authoritative contract.
servers:
  - url: https://syvon.ai
    description: Portal (management plane)
  - url: https://brain.syvon.ai
    description: Brain (read plane)
security: []
tags:
  - name: Auth
    description: Minting the portal JWT
  - name: Portal
    description: Management plane — user-scoped (portal JWT)
  - name: Brain
    description: Published-agent read plane — workspace-scoped (sk_ws_…)
paths:
  /api/workspaces/{id}/members:
    get:
      tags:
        - Portal
      summary: List workspace members (member-only)
      operationId: listMembers
      parameters:
        - name: id
          in: path
          required: true
          description: Workspace id
          schema:
            type: string
      responses:
        '200':
          description: Members
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/WorkspaceMember'
      security:
        - bearerAuth: []
      servers:
        - url: https://syvon.ai
components:
  schemas:
    WorkspaceMember:
      type: object
      description: ''
      properties:
        id:
          description: ''
          type: string
        userId:
          description: ''
          type: string
        workspaceId:
          description: ''
          type: string
        role:
          $ref: '#/components/schemas/MemberRole'
          description: ''
        email:
          description: ''
          anyOf:
            - type: string
            - type: 'null'
        name:
          description: ''
          anyOf:
            - type: string
            - type: 'null'
        image:
          description: ''
          anyOf:
            - type: string
            - type: 'null'
        createdAt:
          description: ''
          type: string
      required:
        - id
        - userId
        - workspaceId
        - role
        - email
        - name
        - image
        - createdAt
    MemberRole:
      type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Portal API JWT (user-scoped, ~1h)

````