Get User
Get a specific user by ID or email
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
user_id | string | Optional | User ID to retrieve |
email | string | Optional | User email to look up (alternative to user_id) |
include_security | boolean | Optional | Include security settings |
include_preferences | boolean | Optional | Include user preferences |
include_disk_space | boolean | Optional | Include disk space usage |
Examples
MCP Tool Call
{
"name": "sharefile_getUser",
"arguments": {
"user_id": "example",
"email": "example",
"include_security": true,
"include_preferences": true,
"include_disk_space": true,
"summary_only": true
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/sharefile/getUser \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"user_id": "example",
"email": "example",
"include_security": true,
"include_preferences": true,
"include_disk_space": true,
"summary_only": true
}'