GET
/
api
/
v1
/
workspaces
/
:workspace-slug
/
projects
/
:project_id
/
members
curl --request GET \
  --url https://api.plane.so/api/v1/workspaces/:workspace-slug/projects/:project_id/members/ \
  --header 'x-api-key: <api-key>'

Path parameters

workspace-slug
string
required

The workspace-slug represents the unique workspace identifier for a workspace in Plane. It can be found in the URL. For example, in the URL https://app.plane.so/my-team/projects/, the workspace slug is my-team.

project_id
string
required
The unique identifier of the project

Response

[
    {
        "id": "00000000-0000-0000-0000-000000000001",
        "first_name": "User",
        "last_name": "One",
        "email": "user1@example.com",
        "avatar": "",
        "avatar_url": null,
        "display_name": "user1",
    },
    {
        "id": "00000000-0000-0000-0000-000000000002",
        "first_name": "",
        "last_name": "",
        "email": "user2@example.com",
        "avatar": "",
        "avatar_url": null,
        "display_name": "user2",
    },
    {
        "id": "00000000-0000-0000-0000-000000000003",
        "first_name": "User",
        "last_name": "Three",
        "email": "user3@example.com",
        "avatar": "",
        "avatar_url": null,
        "display_name": "user3",
    }
]