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

# List members



## OpenAPI

````yaml /api-reference/ageneral-project-members-openapi.json get /v1/projects/{project_id}/members
openapi: 3.1.0
info:
  title: Members
  version: 1.0.0
  description: >-
    Members under a **project id** in the path: list, add, remove, update roles.


    **JSON** over **HTTPS** with **camelCase** field names.


    **Authentication:** `Authorization: Bearer <session JWT>` from Ageneral
    sign-in. **Base URL:** `https://ageneral.ai`.
  contact:
    name: Ageneral
    url: https://ageneral.ai
servers:
  - url: https://ageneral.ai
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Members
    description: Membership and roles under `/v1/projects/{project_id}/members`.
paths:
  /v1/projects/{project_id}/members:
    get:
      tags:
        - Members
      summary: List members
      operationId: listProjectMembers
      parameters:
        - name: project_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListProjectMembersResponse'
        '401':
          description: Missing or invalid session.
        '403':
          description: Forbidden for this user or project.
        '404':
          description: Resource not found.
components:
  schemas:
    ListProjectMembersResponse:
      type: object
      properties:
        members:
          type: array
          items:
            $ref: '#/components/schemas/ProjectMember'
    ProjectMember:
      type: object
      properties:
        projectId:
          type: string
        userId:
          type: string
        email:
          type: string
        role:
          type: string
        createdAt:
          type: string
      additionalProperties: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Ageneral session JWT. Obtain through web sign-in or extension OAuth.

````