mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-11-01 00:03:33 +00:00
41 lines
614 B
JSON
41 lines
614 B
JSON
{
|
|
"operationId": "deleteDeadHost",
|
|
"summary": "Delete a 404 Host",
|
|
"tags": ["404-hosts"],
|
|
"security": [
|
|
{
|
|
"bearerAuth": ["dead_hosts.manage"]
|
|
}
|
|
],
|
|
"parameters": [
|
|
{
|
|
"in": "path",
|
|
"name": "hostID",
|
|
"description": "The ID of the 404 Host",
|
|
"schema": {
|
|
"type": "integer",
|
|
"minimum": 1
|
|
},
|
|
"required": true,
|
|
"example": 2
|
|
}
|
|
],
|
|
"responses": {
|
|
"200": {
|
|
"description": "200 response",
|
|
"content": {
|
|
"application/json": {
|
|
"examples": {
|
|
"default": {
|
|
"value": true
|
|
}
|
|
},
|
|
"schema": {
|
|
"type": "boolean"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|