meta { name: Get System Scan Settings type: http seq: 1 } get { url: {{base_url}}/api/libraries/scan-settings auth: inherit } headers { Content-Type: application/json } script:post-response { res.status.should.equal(200); res.body.type.should.equal("application/json"); res.body.data.should.have.property('scan_frequency_minutes'); res.body.data.should.have.property('auto_scan_enabled'); } docs { ## Get System Scan Settings Retrieves current system-wide scan settings for all libraries. **Authentication**: Admin token required **Response**: Current scan frequency and auto-scan status }