mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-11-02 00:33:33 +00:00
37 lines
571 B
JSON
37 lines
571 B
JSON
{
|
|
"operationId": "downloadCertificate",
|
|
"summary": "Downloads a Certificate",
|
|
"tags": ["certificates"],
|
|
"security": [
|
|
{
|
|
"bearerAuth": ["certificates.manage"]
|
|
}
|
|
],
|
|
"parameters": [
|
|
{
|
|
"in": "path",
|
|
"name": "certID",
|
|
"description": "Certificate ID",
|
|
"schema": {
|
|
"type": "integer",
|
|
"minimum": 1
|
|
},
|
|
"required": true,
|
|
"example": 1
|
|
}
|
|
],
|
|
"responses": {
|
|
"200": {
|
|
"description": "200 response",
|
|
"content": {
|
|
"application/zip": {
|
|
"schema": {
|
|
"type": "string",
|
|
"format": "binary"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|