# \[Rewst Master v2] PSA-Kaseya: Get Roles

This workflow retrieves all user roles from Kaseya BMS, making it a key data source for role-based automations. MSPs can use it for onboarding techs, auditing permissions, routing tickets by role, or syncing access controls across systems. It runs a simple API call to pull role data and feeds it into other workflows to help ensure consistency, while making updates easier when role structures change.

This workflow contains 1 task.

### Inputs

* **choose\_variable** - string

### Outputs

* **options**: Array of roles.

### Key tasks

* **kaseya\_bms\_list\_roles**: Kaseya BMS integration: List Roles

### Jinja example

```jinja
{{
    [
        {
        "id": role.id,
        "label": role.name,
        "default": true if role.id == ORG.VARIABLES[CTX.choose_variable]|d|int else false
        }
        for role in TASKS.kaseya_bms_list_roles.result.result
    ] | sort(attribute="label") | unique(attribute="id")
}}
```

This is used for defining the role's data alias.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.rewst.help/documentation/automations/subworkflows/rewst-master-v2-psa-kaseya-get-roles.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
