completeWorkflow
deleteWorkflow
Deletes a workflow, including all states and transitions.
getState
getStates
getTransition
Finds a transition by its name.
Arguments
Argument Name | Type | Description |
---|---|---|
projectName |
String |
(Required) The name for the project that must be unique among all projects. |
workflowName |
String |
(Required) The name of the workflow. |
stateName |
String |
(Required) The name used for the new state. |
transitionName |
String |
(Required) The name used for the transition instance. |
getTransitions
Retrieves all transitions in a workflow.
Arguments
Argument Name | Type | Description |
---|---|---|
projectName |
String |
(Required) The name for the project that must be unique among all projects. |
workflowName |
String |
(Required) The name of the workflow. |
stateName |
String |
(Required) The name used for the new state. |
targetState |
String |
Limits results to transitions that have the specified state as a target. |
getWorkflow
getWorkflows
runWorkflow
Runs the specified workflow definition and returns the workflow name.
Arguments
Argument Name | Type | Description |
---|---|---|
projectName |
String |
(Required) The name for the project that must be unique among all projects. |
workflowDefinitionName |
String |
(Required) The name of the workflow definition. |
actualParameters |
Map |
The list of actual parameters. |
credentials |
Collection |
Credentials to be used in the state. |
priority |
JobPriority |
The priority of jobs launched by the workflow. |
scheduleName |
String |
Name for the schedule; must be unique among all schedules for the project. |
startingState |
String |
The name of the starting state. |
transitionWorkflow
Manually transitions from the active workflow state.
Arguments
Argument Name | Type | Description |
---|---|---|
projectName |
String |
(Required) The name for the project that must be unique among all projects. |
workflowName |
String |
(Required) The name of the workflow. |
stateName |
String |
(Required) The name used for the new state. |
transitionName |
String |
(Required) The name used for the transition instance. |
actualParameters |
Map |
The list of actual parameters. |
credentials |
Collection |
Credentials to be used in the state. |