mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-20 00:10:19 -05:00
19 lines
499 B
YAML
19 lines
499 B
YAML
|
|
/api/v4/logs/download:
|
||
|
|
get:
|
||
|
|
tags:
|
||
|
|
- logs
|
||
|
|
summary: Download system logs
|
||
|
|
description: >
|
||
|
|
Downloads the system logs as a text file.
|
||
|
|
operationId: DownloadSystemLogs
|
||
|
|
responses:
|
||
|
|
"200":
|
||
|
|
description: System logs downloaded successfully.
|
||
|
|
content:
|
||
|
|
text/plain:
|
||
|
|
schema:
|
||
|
|
type: string
|
||
|
|
format: binary
|
||
|
|
"500":
|
||
|
|
$ref: "#/components/responses/InternalServerError"
|