1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- {
- "openapi": "3.0.3",
- "info": {
- "title": "settings",
- "version": "0.0.1",
- "description": "Nextcloud settings",
- "license": {
- "name": "agpl"
- }
- },
- "components": {
- "securitySchemes": {
- "basic_auth": {
- "type": "http",
- "scheme": "basic"
- },
- "bearer_auth": {
- "type": "http",
- "scheme": "bearer"
- }
- },
- "schemas": {}
- },
- "paths": {
- "/index.php/settings/admin/log/download": {
- "get": {
- "operationId": "log_settings-download",
- "summary": "download logfile",
- "description": "This endpoint requires admin access",
- "tags": [
- "log_settings"
- ],
- "security": [
- {
- "bearer_auth": []
- },
- {
- "basic_auth": []
- }
- ],
- "responses": {
- "200": {
- "description": "Logfile returned",
- "headers": {
- "Content-Disposition": {
- "schema": {
- "type": "string"
- }
- }
- },
- "content": {
- "application/octet-stream": {
- "schema": {
- "type": "string",
- "format": "binary"
- }
- }
- }
- }
- }
- }
- }
- },
- "tags": []
- }
|