Files
nginx-proxy-manager/backend/schema/paths/nginx/proxy-hosts/hostID/delete.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"
}
}
}
}
}
}