Member permission set

  • PATCH
  • /workspaces
  • /:workspace
  • /projects
  • /:project_name
  • /members
  • /:member_id

Changes permission set of the selected user in the project. Restricted to admins only.

Request

REQUIRED SCOPES
WORKSPACE
URL PARAMETERS
workspacerequiredstring
The workspace name.
project_namerequiredstring
The name of the project.
member_idrequiredinteger
The numerical ID of the desired user.
POST PARAMETERS
permission_setrequiredpermission_set
Defines the permission set with which the user is added to the project.

Last modified on Jan 19, 2026

Request example

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

Response

EXAMPLE RESPONSE
{ "url": "https://api.buddy.works/workspaces/buddy/projects/2/member/1", "html_url": "https://app.buddy.works/buddy/company-website/members/profile/1", "id": 1, "name": "Mike Benson", "avatar_url": "https://app.buddy.works/image-server/user/0/0/0/0/0/0/1/d643744fbe5ebf2906a4d075a5b97110/w/32/32/AVATAR.png", "admin": true, "workspace_owner": true, "permission_set": { "url": "https://api.buddy.works/workspaces/buddy/permissions/1", "html_url": "https://app.buddy.works/buddy/permissions/edit/1", "id": 1, "name": "Developer", "description": null, "type": "DEVELOPER", "repository_access_level": "READ_WRITE", "pipeline_access_level": "READ_WRITE" } }