mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-11-01 08:13:34 +00:00
41 lines
622 B
JSON
41 lines
622 B
JSON
{
|
|
"operationId": "deleteProxyHost",
|
|
"summary": "Delete a Proxy Host",
|
|
"tags": ["proxy-hosts"],
|
|
"security": [
|
|
{
|
|
"bearerAuth": ["proxy_hosts.manage"]
|
|
}
|
|
],
|
|
"parameters": [
|
|
{
|
|
"in": "path",
|
|
"name": "hostID",
|
|
"description": "The ID of the Proxy 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"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|