Update Group

Update group properties (name, shared status)

Parameters

ParameterTypeRequiredDescription
group_idstringRequiredID of the group to update
namestringOptionalNew name for the group
is_sharedbooleanOptionalUpdate shared status

Examples

MCP Tool Call

{
  "name": "sharefile_updateGroup",
  "arguments": {
    "group_id": "example",
    "name": "example",
    "is_shared": true
  }
}

REST API

curl -X POST https://api.syncello.io/v1/tools/sharefile/updateGroup \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "group_id": "example",
  "name": "example",
  "is_shared": true
}'