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

# List organization members

> Retrieve all members of an organization



## OpenAPI

````yaml openapi.json get /api/organizations/{id}/members
openapi: 3.0.3
info:
  title: Warp API
  description: >-
    Comprehensive API for Warp platform including organizations, projects, ZK
    proofs, payments, and more
  version: 1.0.0
  contact:
    name: Warp Support
    email: support@usewarp.net
servers:
  - url: https://platform.usewarp.net
    description: Platform API
  - url: https://checkout.usewarp.net
    description: Checkout API
security:
  - bearerAuth: []
paths:
  /api/organizations/{id}/members:
    get:
      tags:
        - Organizations
      summary: List organization members
      description: Retrieve all members of an organization
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: Organization ID
      responses:
        '200':
          description: Members retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  members:
                    type: array
                    items:
                      $ref: '#/components/schemas/OrganizationMember'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Access denied
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - bearerAuth: []
components:
  schemas:
    OrganizationMember:
      type: object
      properties:
        id:
          type: string
          description: Member ID
        role:
          type: string
          enum:
            - admin
            - member
          description: Member role
        created_at:
          type: string
          format: date-time
          description: Member creation timestamp
        user:
          $ref: '#/components/schemas/UserProfile'
      required:
        - id
        - role
        - created_at
        - user
    Error:
      type: object
      properties:
        error:
          type: string
          description: Error message
        details:
          type: array
          items:
            type: object
          description: Detailed validation errors
      required:
        - error
    UserProfile:
      type: object
      properties:
        id:
          type: string
          description: User ID
        email:
          type: string
          format: email
          description: User email
        first_name:
          type: string
          description: User first name
        last_name:
          type: string
          description: User last name
        onboarding_completed:
          type: boolean
          description: Whether user has completed onboarding
        is_admin:
          type: boolean
          description: Whether user is an admin
        created_at:
          type: string
          format: date-time
          description: User creation timestamp
        updated_at:
          type: string
          format: date-time
          description: User update timestamp
      required:
        - id
        - email
        - onboarding_completed
        - is_admin
        - created_at
        - updated_at
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: JWT Bearer token authentication

````