User group
- PATCH
- /workspaces
- /:workspace
- /groups
- /:group_id
Edits the properties of an existing group
Request example
curl -X PATCH "https://api.buddy.works/workspaces/:workspace/groups/:group_id" \
-H "Authorization: Bearer <YOUR-TOKEN>" \
-H "Content-Type: application/json" \
-d '{
"name": "senior-developers",
"description": "Senior development team members",
"auto_assign_to_new_projects": false,
"allow_add_new_projects": true,
"allow_add_new_domains_on_owner_behalf": true,
"auto_assign_permission_set_id": 2
}'