Update User

Update user properties (name, company, security settings)

Parameters

ParameterTypeRequiredDescription
user_idstringRequiredID of the user to update
first_namestringOptionalUpdated first name
last_namestringOptionalUpdated last name
companystringOptionalUpdated company name
is_disabledbooleanOptionalDisable (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
}'