Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Anchor
Top
Top

...

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
workflowIdLongThis is the id of the workflow
workflowTypeStringThis is the type of the workflow
reviewStatusStringThis is the status of the review
abortedOnTimestampThis is when the execution was aborted if applicable
abortedByStringThis is who aborted the execution if applicable


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.

...

Info
titleAPI URL

http://host:port/flexdeploy/rest/topologyv1/workflowexecution/{workflowExecutionId}

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 1174966 and had the following attributes

...

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.


Info
titleAPI URLs

http://host:port/flexdeploy/rest/v1/topology/workflowExecution?

Append the following character sequences to the above URL to specify Query parameters.
Use '&' between successive query parameters: 

workflowExecutionId={workflowExecutionId}

workflowRequestId={workflowRequestId}

...

Tip

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

Parameters

Parameter

Type

Required

Description

workflowExecutionIdURLNoSearch by workflow execution id

workflowRequestId

URLNoSearch by workflow request id
parentWorkflwoRequestIdURLNoSearch by parent workflow execution id
projectIdURLNoSearch by project id
projectVersionIdURLNoSearch by project version id
projectWorkflowIdURLNoSearch by project workflow id
workflowVersionidURLNoSearch by project id
environmentIdURLNoSearch by environment id
instanceIdURLNoSearch by instance id
predeployWorkflowExecIdURLNoSearch by predeploy workflow execution Id
executionStatusURLNoSearch by execution status
dockerImageNameURLNoSearch by docker image name
workflowIdURLNoSearch by workflow Id
workflowTypeURLNoSearch by workflow type
reviewStatusURLNoSearch by review status
limitURLNoLimit the number of results. i.e. if set to 10, only 10 executions will be returned. if not included all will be returned.
offsetURLNoOffset of the results. This will offset the results. i.e. if you set the limit to 10, and now you want the next 10, set the offset to 10 and it will skip the first 10.

Example

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

...

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

...

Info

http://host:port/flexdeploy/rest/topologyv1/workflowexecution/{workflowExecutionId}/logs

Parameters

Parameter

Type

Required

Description

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


...