- Move all files from bruno-yaml/* to bruno/* - Maintains existing directory structure within categories - Updates bruno/user/auth files with OAuth2 refresh token flow - Updates bruno/user/profile files for user profile management - Adds bruno/dashboard/ directory with dashboard API tests - Preserves all existing test scenarios and OpenCollection YAML format - No functional changes - file reorganization only
33 lines
778 B
YAML
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"
|