Get Group
Get details of a distribution group
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
group_id | string | Required | Group ID to retrieve |
include_contacts | boolean | Optional | Include group members/contacts (default false) |
Examples
MCP Tool Call
{
"name": "sharefile_getGroup",
"arguments": {
"group_id": "example",
"include_contacts": true,
"summary_only": true
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/sharefile/getGroup \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"group_id": "example",
"include_contacts": true,
"summary_only": true
}'