Delete User

Delete a user from the ShareFile account

Parameters

ParameterTypeRequiredDescription
user_idstringRequiredID of the user to delete
completelybooleanOptionalIf true, permanently delete. If false, disable only (default: false)

Examples

MCP Tool Call

{
  "name": "sharefile_deleteUser",
  "arguments": {
    "user_id": "example",
    "completely": true
  }
}

REST API

curl -X POST https://api.syncello.io/v1/tools/sharefile/deleteUser \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "user_id": "example",
  "completely": true
}'