delete_user
Remove a user account from BookStack by specifying the user ID, with optional content ownership transfer to another user. Requires admin permissions to execute.
Instructions
Delete a user account (requires admin permissions)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | User ID | |
| migrate_ownership_id | No | ID of user to transfer ownership of content to |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "User ID",
"type": "number"
},
"migrate_ownership_id": {
"description": "ID of user to transfer ownership of content to",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}