Files
bookhoard/bruno-yaml/scanner/Stop Watch Mode.yml
T

33 lines
778 B
YAML

info:
name: Stop Watch Mode
type: http
seq: 6
http:
method: POST
url: '{{base_url}}/api/scanner/watch/stop'
auth: inherit
body:
type: json
jsonBody: "{\n \"library_id\": \"{{library_id"
docs: |-
## Stop Watch Mode
Stops real-time file system monitoring for a specific library.
**Method:** POST
**Endpoint:** /api/scanner/watch/stop
**Authentication:** Required (Bearer token, Admin only)
**Request Body:**
- `library_id` (string, required): UUID of the library to stop watching
- Example: `"550e8400-e29b-41d4-a716-446655440000"`
**Response:** HTTP 200 (OK)
```json
{
"message": "watch mode stopped for library",
"library_id": "550e8400-e29b-41d4-a716-446655440000"