Advanced workflow operations menu
Last updated
Was this helpful?
Last updated
Was this helpful?
These operations can be found inside each task's Advanced tab.
For more on integration overrides and how to use them, see our documentation here.
Add an integration override by clicking . This will expose a new submenu for Configuration Selection Mode.
Transition modes in Rewst are responsible for determining how transitions attached to a workflow action are followed. There are two primary modes:
Follow All: This is the default mode. If your task has multiple conditions attached, the Follow All mode attempts to follow all of the specified transitions. In the workflow visualization, this mode is represented by the standard color blue.
Follow First: In this mode, conditions are evaluated from left to right and as soon as the first condition is satisfied, the remaining conditions are disregarded. To differentiate these transitions in the workflow visualization, they are color-coded orange.
This setting is used to indicate how many parent tasks need to be satisfied. For example, 0
would indicate all tasks. If the workflow has two tasks with arrows pointing to a third task, that sensitivity is the number of tasks above it which need to be complete before it runs. This is particularly important when building workflows that contain subworkflows.
The Run as Org option allows the workflow action to run in the context of another organization.
The purpose of Run as Org
is to temporarily pass the execution of a workflow task into the context of another organization. This is something you may see done when you have a task— be it an individual action or a subworkflow— that needs to be executed as if it were for a different org than the one the workflow is running for.
For example, if you wanted to have something run once for the parent organization that needed to also reference items for a child organization, a Run as Org option would solve this issue. Start by listing all organizations. Then, using Run as Org
on a subworkflow, do things within that subworkflow for one or many of your managed organizations.
Or, when a form has an organization picker on it, where the organization ID is passed into the workflow from the form, Run as Org
is used to have the actions in the workflow run as if they were for the selected organization, instead of the organization for which the form was loaded.
With Items is the equivalent to a foreach
statement in other languages.
With this, you can pass a number of objects into a certain action and collect the results from each and then do something.
In the example below, you're going to list every user that is enabled in the child organization, and create or update a contact for each one.
List all enabled users, then output this to a data alias called
The data alias has the following Jinja:
You then have a subworkflow that creates or updates a contact. As per the best practice, use a subworkflow with your With Items.
In the Advanced tab, set the With Items field with this data alias.
The action now has the additional icon indicating that it has a With Items
set on it.
During testing, or for example if creating tickets from an alert, you may sometimes want to limit the amount of alerts you get during this phase. Test the workflow on a subset of your total users initially to make sure it works as expected.
To achieve this, you could create an input variable on the workflow called max_tickets_to_create_per_action
and set it to the maximum number of times you want that With Items to run.
If set to 1, it will only run on a single object within CTX.all_users.
The below code is what you would use in the With Items field in the Advanced tab.
Iterating through CTX.all_users on the action means you can't use {{ CTX.all_users.X }} as the property for the input.
Instead, you must use {{ item() }}
Say you want to get the first name of each user as an input. On your With Items
action you would execute:
If you're running a workflow task using With Items, this allows you to set how many of these processes run at the same time. It's recommended that no more than 10 concurrent actions be performed at a time to guarantee performance.
This allows you to adjust the number of seconds to wait for a task to complete. The default value is 10 minutes.