Files
bookhoard/bruno-yaml/sidecar/Get System Configuration.yml
T

37 lines
763 B
YAML

info:
name: Get System Configuration
type: http
seq: 3
http:
method: GET
url: '{{base_url}}/api/system/config'
auth: inherit
body:
type: none
headers:
- key: Authorization
value: Bearer {{admin_token
docs: |-
## Get System Configuration
Retrieves system-wide configuration settings.
**Method:** GET
**Endpoint:** /api/system/config
**Authentication:** Bearer token (admin only)
**Response:**
- `base_url` (string): Base URL
- `opds_base_url` (string): OPDS endpoint URL
- `api_base_url` (string): API endpoint URL
- Additional configuration fields
**Status Codes:**
- 200: Success
- 401: Unauthorized
- 403: Forbidden (admin only)
- 500: Internal server error