diff --git a/certified-connectors/Experlogix Smart Flows/apiDefinition.swagger.json b/certified-connectors/Experlogix Smart Flows/apiDefinition.swagger.json index 5c2e87a325..2b4651ad4a 100644 --- a/certified-connectors/Experlogix Smart Flows/apiDefinition.swagger.json +++ b/certified-connectors/Experlogix Smart Flows/apiDefinition.swagger.json @@ -439,6 +439,12 @@ "$ref": "#/definitions/FlowExecutionResponse" } }, + "202": { + "description": "Success", + "schema": { + "$ref": "#/definitions/FlowExecutionResponse" + } + }, "400": { "description": "Bad Request" }, @@ -452,6 +458,60 @@ ] } }, + "/api/ExecutionProgress": { + "get": { + "description": "Get the progress of an execution.", + "operationId": "GetExecutionProgress", + "parameters": [ + { + "in": "query", + "name": "executionId", + "required": true, + "type": "string" + }, + { + "in": "query", + "name": "timeout", + "required": false, + "type": "string" + }, + { + "in": "query", + "name": "startTime", + "required": false, + "type": "string" + } + ], + "produces": [ + "application/json" + ], + "responses": { + "200": { + "description": "Success", + "schema": { + "$ref": "#/definitions/FlowExecutionResponse" + } + }, + "202": { + "description": "Success", + "schema": { + "$ref": "#/definitions/FlowExecutionResponse" + } + }, + "400": { + "description": "Bad Request" + }, + "401": { + "description": "Unauthorized" + } + }, + "summary": "Get Flow Schema", + "tags": [ + "Flows" + ], + "x-ms-visibility": "internal" + } + }, "/api/Flows": { "get": { "consumes": [ @@ -742,4 +802,4 @@ "securityDefinitions": {}, "swagger": "2.0", "tags": [] -} \ No newline at end of file +}