{ "swagger": "2.0", "info": { "description": "kernel接口文档", "version": "1.0.0" }, "host": "10.99.232.71:38499", "basePath": "/kernel", "schemes": [], "consumes": [ "*/*" ], "produces": [ "*/*" ], "paths": { "/kernel/flowCaseBase/delete": { "post": { "tags": [ "flow-case-base-controller" ], "summary": "根据案例id删除案例", "operationId": "deleteUsingPOST_1", "consumes": [ "application/json" ], "produces": [ "*/*" ], "parameters": [ { "in": "body", "name": "jsonObject", "description": "jsonObject", "required": true, "schema": { "type": "object", "additionalProperties": { "type": "object" } } } ], "responses": { "200": { "description": "OK", "schema": { "originalRef": "ResponseMessage", "$ref": "#/definitions/ResponseMessage" } }, "201": { "description": "Created" }, "401": { "description": "Unauthorized" }, "403": { "description": "Forbidden" }, "404": { "description": "Not Found" } }, "deprecated": false, "x-order": "2147483647" } } }, "definitions": { "ResponseMessage": { "type": "object", "properties": { "errorCode": { "type": "integer", "format": "int32" }, "message": { "type": "string" }, "result": { "type": "object" }, "success": { "type": "boolean" } }, "title": "ResponseMessage" } } }
时间: 2023-08-07 12:12:46 浏览: 88
这是一个接口文档,描述了一个名为 kernel 的服务的 API。其中包含一个路径 /kernel/flowCaseBase/delete,它采用 POST 方法,用于根据案例 id 删除案例。在请求体中,需要传递一个 jsonObject 对象,该对象包含一个 additionalProperties 属性,其值为一个对象。响应中包含一个 ResponseMessage 对象,包含 errorCode、message、result 和 success 属性。
阅读全文