List Groups
List distribution groups in the account
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
top | number | Optional | Maximum number of groups to return |
skip | number | Optional | Number of groups to skip (pagination) |
is_shared | boolean | Optional | Filter to only shared groups |
Examples
MCP Tool Call
{
"name": "sharefile_listGroups",
"arguments": {
"top": 12345,
"skip": 12345,
"is_shared": true,
"summary_only": true
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/sharefile/listGroups \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"top": 12345,
"skip": 12345,
"is_shared": true,
"summary_only": true
}'