Completed task in project
Triggered when any task is completed in the selected project.
New comment on task
Triggered when any new comment is made to the selected task.
New or updated task in project
Triggered when any task is added or updated in the specified project in the specified workspace.
New project in workspace
Triggered when a new project is added to the selected workspace.
New story on task
Triggered when any new story is made to the selected task.
New tag in workspace
Triggered when a new tag is added to the selected workspace.
New task assigned to you in workspace
Triggered when a task is assigned to you in the selected workspace.
New team in workspace
Triggered when a new team is added to the selected workspace.
New user
Triggered when a new user is created.
New workspace
Triggered when a new workspace is created.
Associate task to project
Associates a newly created task to a specified project in the specified workspace.
Create new comment
Creates a new comment on the specified task.
Create new project
Creates a new project in the specified workspace.
Create new task
Creates a new task in the specified project in the specified workspace.
Array to single value
Converts data field arrays to a single mappable, formatted data field, with optional separation text between each item.
Compare two arrays
Compares the elements in two arrays, a left array and a right array. Emits two outputs: a "missing array" of values contained in the left array but missing in the right array, and an "extra array" of values contained in the right array but not in the left array. Duplicate values are emitted only once.
Compute hash
Applies a Base64, MD5, or SHA-1 hash function to the input value. The hash result is emitted as output.
Count array elements
Emits the number of elements contained in the input array
Count matches in array
Returns the total number of matches of a given value in the specified array.
Emit data field as an array to iterate
Emits a single mapped trigger data field as an array. The intended purpose is so that an Array Iterator can be used in an automation to process multiple items in trigger data.
Emit fixed number of array iterations
Emits the specified number of array iteration numbers that can be mapped to an Array Iterator so it performs a fixed number of iterations. Iteration numbering can be specified to be one-based or zero-based.
Emit Nth array element
Emits just the specified Nth element from a field having an array of multiple values.
Evaluate JavaScript expression
Evaluates the specified JavaScript expression.
Find corresponding value in name-value array pair
Given two arrays comprising name-value pairs, where one array contains names and another array contains corresponding values, looks up the index position of a specified name and emits the corresponding value from the same index in the value array. An error occurs if the name-value arrays are not the same size or if the specified name is not found in the name array.
Generate random value
Generates a random value according to the specified format mask.
Parse CSV
Downloads a CSV from the specified URL, parses it, and emits its data rows. When configuring this action in an automation, you must upload a sample CSV file so its columns can be determined. All CSV files processed by the action must have the same columns.
Split array
Splits an array into subarrays having a maximum specified length. Each subarray is a text string that contains values separated by specified delimiter text. Use the “parse array elements from text“ action to parse each text string into a separate array that can be iterated over.
Split text into array
Given a single text string with values separated by the specified separation character(s), emits a single array containing the values.