Files
nginx-proxy-manager/backend/schema/paths/nginx/certificates/certID/delete.json

41 lines
617 B
JSON

{
"operationId": "deleteCertificate",
"summary": "Delete a Certificate",
"tags": ["certificates"],
"security": [
{
"bearerAuth": ["certificates.manage"]
}
],
"parameters": [
{
"in": "path",
"name": "certID",
"description": "Certificate ID",
"schema": {
"type": "integer",
"minimum": 1
},
"required": true,
"example": 2
}
],
"responses": {
"200": {
"description": "200 response",
"content": {
"application/json": {
"examples": {
"default": {
"value": true
}
},
"schema": {
"type": "boolean"
}
}
}
}
}
}