Workflow Execution API

Workflow executions can be accessed through this API using GET this allows for the retrieval of workflow executions and there logs.

Authentication - Use Basic Authentication for this API.

Most functions return a JSON workflow execution object. The workflow execution object has these attributes:

AttributesTypeDescription
workflowExecutionIdLongThis is the unique id of the workflow execution
dockerImageNameStringThis is the name of the docker image
environmentIdLongThis is the unique Id of the environment
executionStatusStringThis is the status of the execution i.e. Success, Failure, Running
instanceIdLongThis is the unique Id of the instance
parentWorkflowExecutionIdLongThis is the unique id of a parent execution, if one exists
predeployWorkflowExecutionIdLongThis is the unique id of a pre-deploy execution, if one was used
projectIdLongThis is the unique Id of the project
projectVersionIdLongThis is the unique Id of the project version
projectWorkflowIdLongThis is the unique Id of the project workflow
endTimeTimestampThis is the time the execution ended, if it has ended
startTimeTimestampThis is the time the execution started
workflowRequestIdLongThis is the unique id of the workflow request
workflowVersionIdLongThis is the unique id of the workflow version
createdOnTimestampThis is the time the execution was created
createdByStringThis is the user who created the execution
updatedOnTimestampThis is the time the execution was updated
updatedByStringThis is the user who updated the execution last
versionIntegerThis the version number of the execution
workflowStateStringThis is the state of the workflow

Back to Top



GET

There are two implementations of GET. One will find a workflow execution with the given Id and return the JSON representation of the workflow execution. The other will find a list of workflow executions matching the parameters supplied to it.

GET by ID

This GET service will find an environment with the given Id and return the JSON representation of the object. 

Parameters

Parameter

Type

Required

Description

workflowExecutionIdURLYesThis is a URL parameter for the Id which is used to find and return an environment

Example

If we had an workflow execution in our database with an Id of 1110091 and had the following attributes

Workflow Execution - 1110091
{
    "updatedBy": "buildsubmitmonitor",
    "workflowVersionId": 908232,
    "updatedOn": "2022-02-18T23:19:35.488+0000",
    "versionNumber": 4,
    "createdOn": "2022-02-18T23:19:34.257+0000",
    "createdBy": "buildsubmitmonitor",
    "projectWorkflowId": 149128,
    "predeployWorkflowExecId": null,
    "workflowExecutionId": 1110091,
    "parentWorkflowExecutionId": null,
    "executionStatus": "Success",
    "dockerImageName": null,
    "endTime": "2022-02-18T23:19:35.456+0000",
    "workflowState": null,
    "startTime": "2022-02-18T23:19:35.385+0000",
    "workflowRequestId": 250404,
    "projectId": 149126,
    "environmentId": 16818,
    "instanceId": 5358,
    "projectVersionId": 1840060
}

When we run a GET request at the following URL

http://host:port/flexdeploy/rest/v1/workflowexecution/1110091

The GET request would return the following JSON environment object

Environment GET Return JSON
{
    "updatedBy": "buildsubmitmonitor",
    "workflowVersionId": 908232,
    "updatedOn": "2022-02-18T23:19:35.488+0000",
    "versionNumber": 4,
    "createdOn": "2022-02-18T23:19:34.257+0000",
    "createdBy": "buildsubmitmonitor",
    "projectWorkflowId": 149128,
    "predeployWorkflowExecId": null,
    "workflowExecutionId": 1110091,
    "parentWorkflowExecutionId": null,
    "executionStatus": "Success",
    "dockerImageName": null,
    "endTime": "2022-02-18T23:19:35.456+0000",
    "workflowState": null,
    "startTime": "2022-02-18T23:19:35.385+0000",
    "workflowRequestId": 250404,
    "projectId": 149126,
    "environmentId": 16818,
    "instanceId": 5358,
    "projectVersionId": 1840060
}

Back to Top

GET (Using Query Parameters)

This GET service will return a list of environments in the form of JSON objects based on the query parameters code and name. Environments are only returned if they match all of the specified query parameters. If no query parameters are given this request will return the entire list of environments.

The query parameters are not case sensitive. Searching by name=NAME is the same as searching by name=name.

Parameters

Parameter

Type

Required

Description

workflowRequestId

URLNoThis is a URL query parameter for the workflowRequestId which is used to search the workflow executions.

Example

If we had a workflow execution in our database with an Id of 1110091 and had the following attributes

Environment - 11101
{
    "updatedBy": "buildsubmitmonitor",
    "workflowVersionId": 908232,
    "updatedOn": "2022-02-18T23:19:35.488+0000",
    "versionNumber": 4,
    "createdOn": "2022-02-18T23:19:34.257+0000",
    "createdBy": "buildsubmitmonitor",
    "projectWorkflowId": 149128,
    "predeployWorkflowExecId": null,
    "workflowExecutionId": 1110091,
    "parentWorkflowExecutionId": null,
    "executionStatus": "Success",
    "dockerImageName": null,
    "endTime": "2022-02-18T23:19:35.456+0000",
    "workflowState": null,
    "startTime": "2022-02-18T23:19:35.385+0000",
    "workflowRequestId": 250404,
    "projectId": 149126,
    "environmentId": 16818,
    "instanceId": 5358,
    "projectVersionId": 1840060
}

When we run a GET request at the following URL

http://host:port/flexdeploy/rest/v1/workflowexecution?workflowRequestId=250404

The GET request would return the  following JSON workflow execution object

Environment GET Return JSON
[
	{
    "updatedBy": "buildsubmitmonitor",
    "workflowVersionId": 908232,
    "updatedOn": "2022-02-18T23:19:35.488+0000",
    "versionNumber": 4,
    "createdOn": "2022-02-18T23:19:34.257+0000",
    "createdBy": "buildsubmitmonitor",
    "projectWorkflowId": 149128,
    "predeployWorkflowExecId": null,
    "workflowExecutionId": 1110091,
    "parentWorkflowExecutionId": null,
    "executionStatus": "Success",
    "dockerImageName": null,
    "endTime": "2022-02-18T23:19:35.456+0000",
    "workflowState": null,
    "startTime": "2022-02-18T23:19:35.385+0000",
    "workflowRequestId": 250404,
    "projectId": 149126,
    "environmentId": 16818,
    "instanceId": 5358,
    "projectVersionId": 1840060
	}


Back to Top

GET Logs

This GET service will download all logs associated with this execution as a zip file.

Parameters

Parameter

Type

Required

Description

workflowExecutionIdURLYesThis is a URL parameter for the Id which is used to find and return an environment

Result

logs.zip contains a folder named after the endpoint Id and then zero or more text files “PluginLogs_<Request_Id>_<Project_Id>.txt”



The following macros are not currently supported in the footer:
  • style