Update Group
Update group properties (name, shared status)
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
group_id | string | Required | ID of the group to update |
name | string | Optional | New name for the group |
is_shared | boolean | Optional | Update 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
}'