Completion handlers and workflow wrappers
Last updated
Was this helpful?
Last updated
Was this helpful?
Completion handlers are workflows that execute after another workflow has been completed. They provide a mechanism to extend or modify existing workflows without altering their core structure. These workflows have a context variable that can be used to reference previous contexts from the workflow that was completed. Configure completion handlers to either trigger another workflow after the existing one finishes, or execute the current workflow when another workflow is completed.
Let's look at a few use cases for using completion handlers:
Taking additional steps after the onboarding workflow is complete
Add additional functionality to an existing synced workflow without having to unsync it from the template.
Alerting for failed workflow executions, like kicking off the listener based on a failed status
Navigate to Automations > Workflows.
Locate the existing workflow that you want to address. Click Workflow Completion Handlers.
Note the two options in the Completion Handlers section. You'll need to choose which one you want to use:
Run this workflow when...
This will run the workflow when another workflow completes
When this workflow completes...
This will result in something being done when the workflow completes
Define your trigger conditions. This step will differ depending on which of the two options you chose in step 3.
For When this workflow completes...
Click to choose the workflow to trigger.
Under Trigger On Statuses, specify the conditions for the trigger, such as succeeded, failed, timed out, or canceled. You can select multiple statuses from the drop-down list.
For Run this workflow when...
Click to choose the workflow to trigger.
Under Trigger On Statuses, specify the conditions for the trigger, such as succeeded, failed, timed out, or canceled. You can select multiple statuses from the drop-down list.
Select your relevant integration or integrations from the drop-down selector.
Open each selected integration's accordion menu to choose your Configuration Selection Mode for that integration.
Make sure Enabled is toggled to on.
Click Submit to save your settings.
Contexts from the previously run workflow can be accessed with the COMPLETED_WORKFLOW
variable. You can access most info via the context including ORG and CTX such as:
{{ COMPLETED_WORKFLOW.ORG.VARIABLES.cw_manage_company_id }}
{{ COMPLETED_WORKFLOW.CTX.user.username }}
Completion handlers will always run in the context of the parent organization. If you are taking actions on a suborganization in the workflow, then you must utilize the run-as-organization functionality and overrides set at the completion handler level.
The organization ID that was used in the previous workflow context can be referenced with the following Jinja:
{{ COMPLETED_WORKFLOW.ORG.ATTRIBUTES.id }}
Workflow wrapper is an informal term used colloquially by the ROC to describe a situation where a primary workflow is used in a separate workflow as a subworkflow. Whereas a completion handler only runs when a workflow completes, a workflow wrapper can run before or after completion.
Let's look at a few use cases for using workflow wrappers:
Handle pre and post-onboarding tasks
Run a Crated workflow against a group of items, in a way it was not originally designed to do