For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Trust CenterStatusSupportGet a demoPlatform
DocumentationEvals API ReferenceIntegrations & OTELPlatform SettingsSelf-HostingGuidesChangelog
DocumentationEvals API ReferenceIntegrations & OTELPlatform SettingsSelf-HostingGuidesChangelog
  • Get Started
    • Introduction
    • Quickstart
    • Authentication
    • Data Models
    • API Conventions
  • Data Models
      • GETList Projects
      • POSTCreate Project
      • GETRetrieve Project
      • PUTUpdate Project
      • DELDelete Project
        • GETList Project Members
        • PUTUpdate Project Member Role
        • DELRemove Project Member
  • Evals
  • Legacy
LogoLogo
Trust CenterStatusSupportGet a demoPlatform
Data ModelsProjectsMembers

List Project Members

GET
https://api.confident-ai.com/v1/projects/:projectId/members
GET
/v1/projects/:projectId/members
$curl https://api.confident-ai.com/v1/projects/projectId/members \
> -H "CONFIDENT_API_KEY: <ORGANIZATION-API-KEY>"
200Retrieved
1{
2 "success": true,
3 "data": {
4 "members": [
5 {
6 "id": "user-uuid-1",
7 "email": "alice@example.com",
8 "name": "Alice",
9 "image": null,
10 "projectRole": {
11 "id": "project-role-uuid-1",
12 "name": "Owner"
13 }
14 },
15 {
16 "id": "user-uuid-2",
17 "email": "bob@example.com",
18 "name": "Bob",
19 "image": null,
20 "projectRole": {
21 "id": "project-role-uuid-2",
22 "name": "Member"
23 }
24 }
25 ],
26 "total": 2
27 }
28}
Lists the members of a project, along with each member's project role.
Was this page helpful?
Previous

Update Project Member Role

Next
Built with

Path parameters

projectIdstringRequired
The unique identifier of the project.

Headers

CONFIDENT_API_KEYstringRequired
The organization API key for your Confident AI organization.

Query parameters

pageSizeintegerOptional1-100Defaults to 25

The maximum number of members per page (max 100). Defaults to 25.

Response

successboolean
Indicates if the request was successful
dataobject