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

# Get fund collaborators

> 
    Retrieves a list of all active collaborators for a specific fund.
    
    Access Control:
    - Fund managers can view collaborators of their funds
    - Collaborators can view other collaborators of the same fund
    - Other users cannot view fund collaborators
    



## OpenAPI

````yaml https://api.endaoment.org/oas-json get /v1/funds/{id}/collaborators
openapi: 3.0.0
info:
  title: Endaoment API
  description: The official Endaoment API endpoints
  version: 0.0.1
  contact: {}
servers:
  - url: https://api.endaoment.org
    description: Production
security: []
tags: []
paths:
  /v1/funds/{id}/collaborators:
    get:
      tags:
        - Funds
      summary: Get fund collaborators
      description: |2-

            Retrieves a list of all active collaborators for a specific fund.
            
            Access Control:
            - Fund managers can view collaborators of their funds
            - Collaborators can view other collaborators of the same fund
            - Other users cannot view fund collaborators
            
      operationId: FundsController_getFundCollaborators
      parameters:
        - name: id
          required: true
          in: path
          description: The unique identifier of the fund
          example: 123e4567-e89b-12d3-a456-426614174000
          schema:
            type: string
      responses:
        '200':
          description: List of fund collaborators successfully retrieved
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CollaboratorListingDto'
        '401':
          description: User does not have permission to view collaborators of this fund
        '404':
          description: Fund not found
      security:
        - bearer: []
components:
  schemas:
    CollaboratorListingDto:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier of the collaboration relationship
          example: 123e4567-e89b-12d3-a456-426614174000
        collaboratorUserId:
          type: string
          description: Unique identifier of the collaborator
          example: 123e4567-e89b-12d3-a456-426614174000
        fundId:
          type: string
          description: Unique identifier of the fund
          example: 123e4567-e89b-12d3-a456-426614174000
        createdAtUtc:
          type: string
          description: UTC timestamp when this collaborator relationship was created
          example: '2026-02-11T14:32:10.123Z'
          format: date-time
        email:
          type: string
          description: Email address of the collaborator
          example: john.doe@example.com
        firstName:
          type: string
          description: First name of the collaborator
          example: John
        lastName:
          type: string
          description: Last name of the collaborator
          example: Doe
      required:
        - id
        - collaboratorUserId
        - fundId
        - createdAtUtc
        - email
        - firstName
        - lastName
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````