Skip to main content

Create Halo Ticket

The Create Halo Ticket action creates a new service ticket in Halo PSA. Configure the ticket properties, assignment, and classification to match your workflow requirements.

Single API Call Action

This is a single API call action. You must supply the client, user, and all other parameters directly. Learn more about the difference between workflow actions and single API call actions.

When to Use This Action

Use this action when:

  • You need to create a Halo ticket with known client and user IDs from a previous query action
  • You want precise control over all ticket fields at creation time
  • You are building a multi-step workflow where lookup actions (such as Find Halo User and Client by Email) run before ticket creation and you already have the determined client and user IDs

Don't use this action for:

Automated email to ticket workflows

If you are creating a ticket directly from an inbound email and want MSPintegrations to determine the user and client for you, use Create Halo Ticket from Email instead. That workflow action wraps this action together with user and client determination, optional user creation, and attachment upload.

Configuration

Connection

FieldDescription
Halo ConnectionSelect the Halo connection to use for this action.

Basic Information

FieldDescription
SummaryThe ticket summary/title. Supports text expressions with {{variable}} syntax.
DetailsThe ticket description/details. Supports text expressions for dynamic content.

Client & Contact

FieldDescription
ClientSelect the Halo Client/Company for the ticket. Lock to choose from a dropdown, or unlock to enter a dynamic value using text expressions.
UserSelect the Halo User/Contact for the ticket.
SiteSelect the Halo Site associated with the ticket.
AssetSelect the Halo Asset/Configuration Item to associate with the ticket. When a Client is selected, only assets belonging to that client are shown.

Classification

FieldDescription
Ticket TypeThe type of ticket (e.g., Incident, Service Request).
StatusThe ticket status. If not provided, uses the default status for the ticket type.
PriorityThe ticket priority level (1-4). See the Priority, Impact, and Urgency section below.
ImpactThe impact level (1-4). Some Halo instances require this field. See the Priority, Impact, and Urgency section below.
UrgencyThe urgency level (1-4). Some Halo instances require this field. See the Priority, Impact, and Urgency section below.
CategoryThe primary ticket category (level 1) for classification and reporting.
Category 2Sub-category level 2.
Category 3Sub-category level 3.
Category 4Sub-category level 4.
SLAThe Service Level Agreement to apply to this ticket.

Assignment

FieldDescription
AgentThe agent/technician to assign the ticket to.
TeamThe team to assign the ticket to.

Error Handling

FieldDescription
Error HandlingAction to take if ticket creation fails.
OptionBehavior
ExceptionHalt processing and report the error
BounceReturn the email/item to the sender
ContinueContinue to the next action
StopStop this rule but allow other rules to process
Stop AllStop all processing for this message

Returned Variables

When you configure Store the results in Variable, the result is the created ticket object. Access properties using dot syntax.

Example usage: {{custom.myVariable.id}}

VariableTypeDescription
.idnumberThe created ticket ID
.summarystringThe ticket summary
.detailsstringThe ticket details
.client_idnumberThe client ID
.client_namestringThe client name
.user_idnumberThe user/contact ID
.user_namestringThe user/contact name
.site_idnumberThe site ID
.site_namestringThe site name
.asset_idnumberThe asset/device ID
.asset_tagstringThe asset tag/inventory number
.tickettype_idnumberThe ticket type ID
.status_idnumberThe status ID
.status_namestringThe status name
.priority_idnumberThe priority ID
.priority_namestringThe priority name
.categoryid_1numberThe category ID (level 1)
.categoryid_2numberThe category ID (level 2)
.categoryid_3numberThe category ID (level 3)
.categoryid_4numberThe category ID (level 4)
.impactnumberThe impact level
.urgencynumberThe urgency level
.sla_idnumberThe SLA ID
.agent_idnumberThe assigned agent ID
.agent_namestringThe assigned agent name
.team_idnumberThe assigned team ID
.team_namestringThe assigned team name
.datecreatedstringThe creation timestamp
.datelastupdatedstringThe last update timestamp

Example Use Cases

Create Ticket After User Lookup

After finding a user with Query Halo Users:

SettingValue
Client{{custom.user.users.[0].client_id}} (unlocked)
User{{custom.user.users.[0].id}} (unlocked)
Summary{{email.subject}}
Details{{email.body}}

Create Ticket After Client Lookup

After finding a client with Query Halo Clients:

SettingValue
Client{{custom.client.clients.[0].id}} (unlocked)
Summary{{email.subject}}
Details{{email.body}}
Ticket TypeIncident

Priority, Impact, and Urgency

Halo uses a priority matrix that can automatically calculate the ticket priority from the Impact and Urgency values you provide.

Priority may be overridden

If you set Impact and Urgency on a ticket, Halo's priority matrix may override the Priority value you selected. For example, setting Impact to 3 (Low) and Urgency to 3 (Low) may result in a priority of "Low" regardless of the Priority field you chose.

How it works

  1. You set Priority, Impact, and Urgency on the ticket.
  2. After the ticket is created, Halo evaluates its ticket rules. If a rule matches the Impact and Urgency combination, it overrides the Priority with the value defined in that rule.
  3. The rule-assigned priority takes precedence over the Priority value you provided.

These rules are configured in your Halo instance under Configuration > Tickets > Rules. A default Halo installation includes rules that map Impact/Urgency combinations to specific priority levels (e.g., Impact 3 + Urgency 3 = Low priority).

Recommendations

  • If your Halo instance has Impact/Urgency-to-Priority rules configured, set Impact and Urgency and leave Priority empty. Halo will assign the correct priority automatically via its rules.
  • If your Halo instance does not use these rules, set Priority directly and leave Impact and Urgency empty (unless your instance requires them).
  • To review or modify the priority mapping, navigate to Configuration > Tickets > Rules in your Halo instance.

FAQs

What fields are required?

At minimum, you must provide a Halo Connection and a Summary. Client, User, and other classification fields are optional but recommended for accurate ticket routing.

How do I use dynamic values for Client or User?

Unlock the field selector and enter a text expression referencing a previously queried ID, such as {{custom.client.clients.[0].id}}.

Reply-All Storm Catcher

When this action runs inside an inbound email workflow and the ticket is created successfully, MSPintegrations records the email's Message-ID against the new Halo ticket ID on the selected Halo connection.

Later, if a reply in the same email thread arrives without the Halo ticket tag in the subject or body, Update Halo Ticket from Email can use that stored association to update the correct ticket instead of creating a duplicate.

The association is scoped to the Halo connection you selected on this action, so correlations from one Halo connection never match tickets on another.