Files
bookhoard/bruno/scanner/Start Scanner.bru
T
john-okeefe 64afdf6803 Clean up Bruno scanner documentation formatting
- Remove example request body template
- Improve documentation spacing and formatting
- Clarify API endpoint usage and response structure
2026-01-26 11:29:40 -05:00

40 lines
609 B
Plaintext

meta {
name: Start Scanner
type: http
seq: 2
}
post {
url: {{base_url}}/api/scanner/start
body: json
auth: inherit
}
settings {
encodeUrl: true
timeout: 0
}
docs {
## Start Scanner
Starts monitoring the specified folders for ebook changes.
**Method:** POST
**Endpoint:** /api/scanner/start
**Authentication:** Required
**Request Body:**
- `folder_paths` (array of strings, required): Array of folder paths to monitor
**Response:**
- `message` (string): Success message
**Status Codes:**
- 200: Success
- 400: Bad Request
- 401: Unauthorized
}