[Rewst Master v2] PSA-Kaseya: Get Priorities
Last updated
Was this helpful?
This workflow pulls all ticket priority levels from Kaseya BMS with a single API call, making it a key component for automations that depend on setting or filtering by priority. MSPs can use it to assign priorities when creating tickets, route them based on urgency, or trigger escalations automatically. It uses the List Priorities action to fetch all configurations by ID, helping ensure consistent, flexible handling without hardcoding values that might change later.
This workflow contains 1 task.
choose_variable - string
options: Array of priorities.
kaseya_bms_list_priorities: Kaseya BMS integration: List Priorities
{{
[
{
"id": priority.id,
"name": priority.name,
"default": true if priority.id == ORG.VARIABLES[CTX.choose_variable]|d|int else false
}
for priority in TASKS.kaseya_bms_list_priorities.result.result
] | sort(attribute="name") | unique(attribute="id")
}}This is used to define the priorities data alias.
Last updated
Was this helpful?
Was this helpful?
