{ "operationId": "getNginxTemplate", "summary": "Get a Nginx Template object by ID", "tags": ["Nginx Templates"], "parameters": [ { "in": "path", "name": "templateID", "schema": { "type": "integer", "minimum": 1 }, "required": true, "description": "ID of the Host Template", "example": 1 } ], "responses": { "200": { "description": "200 response", "content": { "application/json": { "schema": { "type": "object", "required": ["result"], "properties": { "result": { "$ref": "#/components/schemas/NginxTemplateObject" } } }, "examples": { "default": { "value": { "result": { "id": 1, "created_at": 1646218093000, "updated_at": 1646218093000, "user_id": 1, "name": "Default Proxy Template", "type": "proxy", "template": "# this is a proxy template" } } } } } } } } }