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

# Get all members of a project



## OpenAPI

````yaml api-reference/endpoints/projects/api-reference/openapi.json get /api/v1/projects/{project_id}/members
openapi: 3.1.0
info:
  title: Polos Orchestrator API
  description: API for the Polos durable execution platform for AI agents
  contact:
    name: Polos Team
    url: https://github.com/polos-dev/polos
  license:
    name: ''
  version: 1.0.0
servers:
  - url: /
    description: Current server
security: []
tags:
  - name: Health
    description: Health check endpoints
  - name: Projects
    description: Project management endpoints
  - name: Agents
    description: Agent definition management
  - name: Tools
    description: Tool definition management
  - name: Workflows
    description: Workflow management
  - name: Executions
    description: Workflow execution management
  - name: Traces
    description: Observability traces
  - name: Events
    description: Event publishing and streaming
  - name: Event Triggers
    description: Event-based workflow triggers
  - name: Schedules
    description: Scheduled workflow execution
  - name: Workers
    description: Worker registration and management
  - name: Deployments
    description: Deployment management
paths:
  /api/v1/projects/{project_id}/members:
    get:
      tags:
        - Projects
      summary: Get all members of a project
      operationId: get_project_members
      parameters:
        - name: project_id
          in: path
          description: Project ID
          required: true
          schema:
            type: string
      responses:
        '200':
          description: List of project members
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProjectMemberResponse'
        '400':
          description: Invalid project ID
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Not authenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Access forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - bearer_auth: []
        - cookie_auth: []
components:
  schemas:
    ProjectMemberResponse:
      type: object
      description: Project member details
      required:
        - id
        - user_id
        - role
        - created_at
        - updated_at
      properties:
        created_at:
          type: string
          description: Creation timestamp (RFC3339)
        id:
          type: string
          description: Member ID
        role:
          type: string
          description: Role (Admin, Write, Read)
        updated_at:
          type: string
          description: Last update timestamp (RFC3339)
        user:
          oneOf:
            - type: 'null'
            - $ref: '#/components/schemas/UserInfo'
              description: User details
        user_id:
          type: string
          description: User ID
    ErrorResponse:
      type: object
      description: Standard error response
      required:
        - error
        - error_type
      properties:
        error:
          type: string
          description: Human-readable error message
        error_type:
          type: string
          description: Machine-readable error type code
    UserInfo:
      type: object
      description: User information
      required:
        - id
        - email
      properties:
        display_name:
          type:
            - string
            - 'null'
          description: User's display name
        email:
          type: string
          description: User's email address
        first_name:
          type:
            - string
            - 'null'
          description: User's first name
        id:
          type: string
          description: User ID
        last_name:
          type:
            - string
            - 'null'
          description: User's last name
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
    cookie_auth:
      type: apiKey
      in: cookie
      name: polos_auth

````