Skip to main content
GET
/
projects
/
{project_id}
/
collaborators
List Project Collaborators
curl --request GET \
  --url https://api.example.com/projects/{project_id}/collaborators
{
  "can_manage": true,
  "collaborators": [
    {
      "member_id": "<string>",
      "role": "discoverer"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.terminaluse.com/llms.txt

Use this file to discover all available pages before exploring further.

List all explicit collaborator roles assigned to a project. This returns users who have been directly granted access to the project, separate from access inherited through namespace or organization membership.

Path Parameters

project_id
string
required

Response

Successful Response

Response model for project collaborators list.

can_manage
boolean
required

Whether the current user can manage collaborators.

collaborators
ProjectCollaboratorResponse · object[]

Project collaborators with explicit direct roles.