Update User
Update user properties (name, company, security settings)
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
user_id | string | Required | ID of the user to update |
first_name | string | Optional | Updated first name |
last_name | string | Optional | Updated last name |
company | string | Optional | Updated company name |
is_disabled | boolean | Optional | Disable (true) or enable (false) the user |
Examples
MCP Tool Call
{
"name": "sharefile_updateUser",
"arguments": {
"user_id": "example",
"first_name": "example",
"last_name": "example",
"company": "example",
"is_disabled": true
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/sharefile/updateUser \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"user_id": "example",
"first_name": "example",
"last_name": "example",
"company": "example",
"is_disabled": true
}'