GET
/
v1
/
funds
/
{id}
/
collaborators
curl --request GET \
  --url https://api.endaoment.org/v1/funds/{id}/collaborators \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "email": "john.doe@example.com",
    "firstName": "John",
    "lastName": "Doe"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The unique identifier of the fund

Response

200
application/json
List of fund collaborators successfully retrieved
id
string
required

Unique identifier of the collaboration

Example:

"123e4567-e89b-12d3-a456-426614174000"

email
string
required

Email address of the collaborator

Example:

"john.doe@example.com"

firstName
string
required

First name of the collaborator

Example:

"John"

lastName
string
required

Last name of the collaborator

Example:

"Doe"