Delete User
Delete a user from the ShareFile account
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
user_id | string | Required | ID of the user to delete |
completely | boolean | Optional | If 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
}'