Files
nginx-proxy-manager/backend/embed/api_docs/paths/hosts/post.json
2021-06-30 10:50:55 +10:00

42 lines
659 B
JSON

{
"operationId": "createHost",
"summary": "Create a new Host",
"tags": [
"Hosts"
],
"requestBody": {
"description": "Host to Create",
"required": true,
"content": {
"application/json": {
"schema": "{{schema.CreateHost}}"
}
}
},
"responses": {
"201": {
"description": "201 response",
"content": {
"application/json": {
"schema": {
"required": [
"result"
],
"properties": {
"result": {
"$ref": "#/components/schemas/HostObject"
}
}
},
"examples": {
"default": {
"value": {
"result": "TODO"
}
}
}
}
}
}
}
}