delete_attachment
Remove an attachment from BookStack by specifying its ID to manage wiki content and maintain organized documentation.
Instructions
Delete an attachment
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Attachment ID |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Attachment ID",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}