Add a member

  • POST
  • /workspaces
  • /:workspace
  • /projects
  • /:project_name
  • /members

Adds a user to the project. Restricted to administrators.

Request

REQUIRED SCOPES
WORKSPACE
URL PARAMETERS
workspacerequiredstring
The workspace name.
project_namerequiredstring
The name of the project.
POST PARAMETERS
idrequiredinteger
The numerical ID of the desired user.
permission_setrequiredpermission_set
Specifies the permissions assigned to the user in the project.

Last modified on Jan 19, 2026

Request example

curl -X POST "https://api.buddy.works/workspaces/:workspace/projects/:project_name/members" \ -H "Authorization: Bearer <YOUR-TOKEN>" \ -H "Content-Type: application/json" \ -d '{ "id": 2, "permission_set": { "id": 2 } }'

Response

EXAMPLE RESPONSE
{ "url": "https://api.buddy.works/workspaces/buddy/projects/2/member/2", "html_url": "https://app.buddy.works/buddy/company-website/members/profile/2", "id": 2, "name": "Sylvia Jones", "avatar_url": "https://app.buddy.works/image-server/user/0/0/0/0/0/0/2/71f5a2ec2e1f4af1cf357e631cd2518e/w/32/32/AVATAR.png", "admin": false, "workspace_owner": false, "permission_set": { "url": "https://api.buddy.works/workspaces/buddy/permissions/2", "html_url": "https://app.buddy.works/buddy/permissions/edit/2", "id": 2, "name": "Read-only", "description": null, "type": "READ_ONLY", "repository_access_level": "READ_ONLY", "pipeline_access_level": "READ_ONLY" } }
STATUS
201 Created