Skip to main content
GET
/
{projectSlug}
/
members
List members
curl --request GET \
  --url https://api.elean.app/v1/public/{projectSlug}/members \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "018e1b2c-0000-0000-0000-000000000099",
    "name": "Jane Smith",
    "email": "jane@example.com"
  }
]

Authorizations

Authorization
string
header
required

API key created in Workspace Settings → API Keys. Pass it in the Authorization header as a Bearer token, or in the X-API-Key header.

Format: el_ followed by 40 hex characters.

Path Parameters

projectSlug
string
required

The slug of the project.

Example:

"my-project"

Response

A list of project members.

id
string<uuid>

Unique identifier of the user. Use as assigneeId in filters or assigneeIds in task create/update.

Example:

"018e1b2c-0000-0000-0000-000000000099"

name
string | null

Display name of the user.

Example:

"Jane Smith"

email
string<email>

Email address of the user.

Example:

"jane@example.com"