mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-01-24 05:38:15 -05:00
40 lines
563 B
JSON
40 lines
563 B
JSON
|
{
|
||
|
"operationId": "deleteDeadHost",
|
||
|
"summary": "Delete a 404 Host",
|
||
|
"tags": ["404 Hosts"],
|
||
|
"security": [
|
||
|
{
|
||
|
"BearerAuth": ["dead_hosts"]
|
||
|
}
|
||
|
],
|
||
|
"parameters": [
|
||
|
{
|
||
|
"in": "path",
|
||
|
"name": "hostID",
|
||
|
"schema": {
|
||
|
"type": "integer",
|
||
|
"minimum": 1
|
||
|
},
|
||
|
"required": true,
|
||
|
"example": 2
|
||
|
}
|
||
|
],
|
||
|
"responses": {
|
||
|
"200": {
|
||
|
"description": "200 response",
|
||
|
"content": {
|
||
|
"application/json": {
|
||
|
"examples": {
|
||
|
"default": {
|
||
|
"value": true
|
||
|
}
|
||
|
},
|
||
|
"schema": {
|
||
|
"type": "boolean"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|