{ "swagger" : "2.0", "info" : { "version" : "4.1.2", "title" : "Poin App" }, "host" : "{{host}}", "basePath" : "{{basePath}}", "schemes" : [ "{{schemes}}" ], "consumes" : [ "application/json" ], "produces" : [ "application/json" ], "paths" : { "/wfServerflow" : { "get" : { "description" : "Method Description -- getWfMicroserverFlowAll", "operationId" : "getWfMicroserverFlowAll", "tags" : [ "WfMicroserverFlowResources" ], "responses" : { "200" : { "schema" : { "type" : "array", "items" : { "$ref" : "#/definitions/WfMicroserverFlowBO" } }, "description" : "Response OK" } } }, "post" : { "description" : "Method Description -- saveWfMicroserverFlows", "operationId" : "saveWfMicroserverFlows", "tags" : [ "WfMicroserverFlowResources" ], "parameters" : [ { "name" : "wfmicroserverflowbo", "in" : "body", "required" : "true", "schema" : { "$ref" : "#/definitions/WfMicroserverFlowBO" }, "description" : "parameter name -- wfmicroserverflowbo" } ], "responses" : { "200" : { "schema" : { "$ref" : "#/definitions/WfMicroserverFlowBO" }, "description" : "Response OK" } } } }, "/wfServerflow/findFlowServer" : { "get" : { "description" : "Method Description -- findWfApp", "operationId" : "findWfApp", "tags" : [ "WfMicroserverFlowResources" ], "parameters" : [ { "name" : "processDefId", "in" : "query", "required" : "false", "type" : "string", "description" : "parameter name -- processDefId" }, { "name" : "workItemId", "in" : "query", "required" : "false", "type" : "string", "description" : "parameter name -- workItemId" } ], "responses" : { "200" : { "schema" : { "$ref" : "#/definitions/WfMicroserverFlowBO" }, "description" : "Response OK" } } } }, "/wfServerflow/page" : { "get" : { "description" : "Method Description -- getWfMicroserverFlowList", "operationId" : "getWfMicroserverFlowList", "tags" : [ "WfMicroserverFlowResources" ], "parameters" : [ { "name" : "id", "in" : "query", "required" : "false", "type" : "string", "description" : "parameter name -- id" }, { "name" : "servername", "in" : "query", "required" : "false", "type" : "string", "description" : "parameter name -- servername" }, { "name" : "flowid", "in" : "query", "required" : "false", "type" : "string", "description" : "parameter name -- flowid" }, { "name" : "offset", "in" : "query", "required" : "false", "type" : "string", "description" : "parameter name -- offset" }, { "name" : "limit", "in" : "query", "required" : "false", "type" : "string", "description" : "parameter name -- limit" } ], "responses" : { "200" : { "schema" : { "$ref" : "#/definitions/PagingData_WfMicroserverFlowBO" }, "description" : "Response OK" } } } }, "/wfServerflow/dels/{ids}" : { "delete" : { "description" : "Method Description -- deleteWfMicroserverFlows", "operationId" : "deleteWfMicroserverFlows", "tags" : [ "WfMicroserverFlowResources" ], "parameters" : [ { "name" : "ids", "in" : "path", "required" : "true", "type" : "string", "description" : "parameter name -- ids" } ], "responses" : { "200" : { "description" : "Response OK" } } } } }, "definitions" : { "WfMicroserverFlowBO" : { "type" : "object", "properties" : { "id" : { "type" : "integer" }, "servername" : { "type" : "string" }, "flowid" : { "type" : "string" } } }, "PagingData_WfMicroserverFlowBO" : { "type" : "object", "properties" : { "offset" : { "type" : "integer" }, "total" : { "type" : "integer" }, "limit" : { "type" : "integer" }, "order" : { "type" : "string" }, "rows" : { "type" : "array", "items" : { "$ref" : "#/definitions/WfMicroserverFlowBO" } }, "sort" : { "type" : "string" }, "search" : { "type" : "string" } } } } }