Core actions
Ticket actions
Ticket actions are available in manual ticket workflows and other automation types that can access tickets.Ticket message status
The Status after sending setting provides three modes:- Automatic uses the normal ticket status transition. If the automation sends the first agent-side message, it becomes the ticket’s entry message and does not normally change the status.
- Force waiting removes any existing hold, moves the ticket to Waiting, and starts its waiting timer when the message is sent. This is useful when an automated entry message asks the player to respond.
- Keep current sends the message without changing the ticket’s current status or waiting timer.
Status after removing hold
The Status after removing hold setting provides three modes:- Automatic restores the status based on the ticket’s latest messages and assignment history.
- Force waiting moves the ticket to Waiting.
- Force assigned moves an assigned ticket to Assigned. If the ticket has no assignee, it moves to Unassigned instead.
HTTP requests
Use an HTTP request action to send data to an external service or retrieve data for later actions. The HTTP request action supports:- Methods:
GET,POST,PUT,PATCH, andDELETE. - Liquid variables in the URL, headers, and body template.
- JSON or raw request bodies for methods that support bodies.
- Bearer token or basic auth credentials.
- Outputs extracted from the response.
HTTP outputs
HTTP outputs turn response data into variables that later actions can use. Each output has:
For response paths, use dot notation. For example,
data.name reads the name property from the data object in the response.
You can also let AI fill an output value by describing what should be extracted from the response. AI-filled outputs on an HTTP Request step use 1 automation credit in total, regardless of how many AI outputs are configured. Path-based outputs do not use credits.
Set variables
Use Set variables to create one or more named values from Liquid templates. Later actions can read those values from this node. Each variable has:
String values are stored as the rendered text. Number and boolean values are parsed from the rendered text. Object and array values must render as valid JSON.
For example, a string variable named
greeting on a node named setVariables can be used later as:
json filter when inserting object or array values from earlier actions:
Generate with AI
Generate with AI renders a Liquid System prompt against the automation context, sends it to the model, and stores the model output as a variable. Each run uses 1 automation credit, the same credit as an HTTP Request step that uses AI-filled outputs. The model is not configurable yet. For example, a node namedaiGenerate stores the model output as result:
Switches
A Switch routes an automation into branches. Each branch has:- A label.
- An optional description.
- A Liquid condition.
- A connected next action.
Best practices
- Keep each action focused on one task.
- Use clear node names, because node names are used in Liquid variable paths.
- Add filters or switch branches before actions that change tickets.
- Use run history to verify outputs from HTTP requests, set variables, and summaries before depending on them in later actions.