Create Group

Create a new distribution group

Parameters

ParameterTypeRequiredDescription
namestringRequiredName of the group
is_sharedbooleanOptionalMake this a shared group (visible to other users)
contactsarrayOptionalArray 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"
}'