Create Group
Create a new distribution group
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | Required | Name of the group |
is_shared | boolean | Optional | Make this a shared group (visible to other users) |
contacts | array | Optional | Array of user IDs or email addresses to add as members |
Examples
MCP Tool Call
{
"name": "sharefile_createGroup",
"arguments": {
"name": "example",
"is_shared": true,
"contacts": "example"
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/sharefile/createGroup \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "example",
"is_shared": true,
"contacts": "example"
}'