delete_image
Remove an image from the BookStack gallery by specifying its unique ID to manage and clean up visual content within your wiki instance.
Instructions
Delete an image from the gallery
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Image ID |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Image ID",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}