get_attachment
Retrieve details of a specific attachment from BookStack wiki using its unique attachment ID to access file information and metadata.
Instructions
Get details of a specific 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"
}