Contexte géant
Base de connaissancesDéveloppeurs
Le Sign Up Now

Project Members

Manage project membership and permissions.


GET

Get a project member by ID

/organizations/{id}/projects/{projectId}/members/{memberId}

Retrieves the full details of a single project member by their membership ID, including their user profile information, assigned role, and membership metadata.

Parameters
idRequired
path · stringOrganization ID
projectIdRequired
path · stringProject ID
memberIdRequired
path · stringMember ID
SDK
import { createGiantContext } from "@giantcontext/sdk-typescript";
const gc = createGiantContext({ apiKey: process.env.GIANTCONTEXT_API_KEY! });
const { data: projectMember } = await gc.projectMembers.getProjectMember({  id: "id",  projectId: "projectId",  memberId: "memberId"});
GET

Get project members

/organizations/{id}/projects/{projectId}/members

Returns a paginated list of users who are members of the specified project, including their roles and profile information. Supports search by name, filtering, and sorting. Project members have access to project resources based on their assigned role.

Parameters
page
query · number
pageSize
query · number
idRequired
path · stringOrganization ID
projectIdRequired
path · stringProject ID
SDK
import { createGiantContext } from "@giantcontext/sdk-typescript";
const gc = createGiantContext({ apiKey: process.env.GIANTCONTEXT_API_KEY! });
const { data: projectMembers } = await gc.projectMembers.getProjectMembers({  id: "your-id",  projectId: "your-project-id"});

Built byHuman
This content was designed and written by a human.
[0]
Colonne
    Colonne 2
    • Discord
    • BlueSky

    © 2026 Giant Context
    ConfidentialitéConditions d'utilisationPolitique relative aux cookies
    Project Members