Get Current User
Get the currently authenticated user's profile
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
include_security | boolean | Optional | Include security settings (lock status, login attempts) |
include_preferences | boolean | Optional | Include user preferences |
Examples
MCP Tool Call
{
"name": "sharefile_getCurrentUser",
"arguments": {
"include_security": true,
"include_preferences": true,
"summary_only": true
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/sharefile/getCurrentUser \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"include_security": true,
"include_preferences": true,
"summary_only": true
}'