ConnectWise Automate is configured in MSP Settings → Integrations.
How to connect
ConnectWise Automate uses integrator credentials issued from the Automate Control Center. Rallied exchanges them for an API access token on connect.1
Create an integrator account in Automate
Open the Automate Control Center and go to System → Integrator. Create a new integrator account (or pick an existing one) and note the username and password. Make sure the integrator has the API permissions you want the agent to use: read-only for inventory and alerts, plus the relevant script-execution permissions if you plan to remediate.
2
Open MSP Integrations
In Rallied, go to MSP Settings → Integrations.
3
Connect ConnectWise Automate
Find the ConnectWise Automate card and click Connect. A credentials form appears.
4
Enter your credentials
Fill in:
- Server Hostname — your Automate server hostname, e.g.
automate.yourcompany.com(nohttps://prefix or trailing slash; Rallied always uses HTTPS) - Integrator Username — the integrator account’s username
- Integrator Password — the integrator account’s password
5
Save and confirm
Click Save. Rallied posts to
https://<server>/cwa/api/v1/apitoken to obtain an access token, stores the credentials, and the card shows Connected when complete.How the agent uses it
When a request touches an Automate-managed endpoint (“is DC01 online?”, “run our cleanup script on the kiosk”, “clear the noisy disk-space alert”), the agent typically:- Resolves the client with
cwa-list-clients, then finds the computer withcwa-list-computers(filter by client / hostname / OS) and pulls details fromcwa-get-computer. - Triages alerts with
cwa-list-alerts(tenant-wide) orcwa-get-computer-alerts(per device) to understand severity and context. - Picks a remediation script from
cwa-list-scriptsand schedules it on the target computer(s) withcwa-run-script(approval-gated). - Once the underlying issue is fixed, dismisses the alert with
cwa-clear-alert(approval-gated).