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

# List organization members



## OpenAPI

````yaml /api-reference/openapi.personal.json get /v1/orgs/{slug}/members
openapi: 3.1.0
info:
  title: Personal token API
  description: User-scoped API for account and organization management.
  version: 0.1.0
servers:
  - url: https://api.microsandbox.dev
security:
  - bearer: []
paths:
  /v1/orgs/{slug}/members:
    get:
      tags:
        - Members
      summary: List organization members
      operationId: list_members
      parameters:
        - name: slug
          in: path
          description: Organization slug
          required: true
          schema:
            type: string
        - name: cursor
          in: query
          description: Pagination cursor
          required: false
          schema:
            type: string
        - name: limit
          in: query
          description: Page size (default 20, max 100)
          required: false
          schema:
            type: integer
            format: int64
      responses:
        '200':
          description: Paginated list of members
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedMemberResponse'
        '401':
          description: Unauthorized
        '403':
          description: Not a member
      security:
        - bearer: []
components:
  schemas:
    PaginatedMemberResponse:
      type: object
      description: Paginated list of organization members.
      required:
        - data
        - has_more
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/OrgMemberResponse'
        has_more:
          type: boolean
        next_cursor:
          type:
            - string
            - 'null'
    OrgMemberResponse:
      type: object
      description: Member with joined user profile data - repository read view.
      required:
        - id
        - user_id
        - email
        - role
        - joined_at
      properties:
        avatar_url:
          type:
            - string
            - 'null'
        display_name:
          type:
            - string
            - 'null'
        email:
          type: string
        id:
          type: string
          format: uuid
        joined_at:
          type: string
          format: date-time
        role:
          $ref: '#/components/schemas/OrgRole'
        user_id:
          type: string
          format: uuid
    OrgRole:
      type: string
      description: Organization membership role.
      enum:
        - owner
        - admin
        - member
        - viewer
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
      description: >-
        Personal access token (msb_pat_…) or session JWT - the credential an
        agent acts with on a user's behalf.

````