Connectwise PSA Integration
Integrate ConnectWise PSA with ilert to automate alert creation from tickets and streamline alerting workflows.
Last updated
Was this helpful?
Integrate ConnectWise PSA with ilert to automate alert creation from tickets and streamline alerting workflows.
Integrating ConnectWise PSA with ilert enables automated alert creation in ilert based on ticket updates in ConnectWise. This helps reduce mean time to resolution (MTTR) by providing real-time alerting and escalation from your service management tool.
In ilert, go to Alert sources → Alert sources and click Create new alert source.

Search for ConnectWise PSA in the search field, click the ConnectWise PSA tile, and then Next.

Give your alert source a name, optionally assign teams, and click Next.
Select an escalation policy by creating a new one or assigning an existing one.

Select your Alert grouping preference and click Continue setup. You may click Do not group alerts for now and change it later.

The next page shows additional settings, such as customer alert templates or notification priority. Click Finish setup for now.
On the final page, an API key and/or webhook URL will be generated. You will need it later.

A registered ConnectWise application with a client ID. You can obtain one here: https://developer.connectwise.com/ClientID
In the ConnectWise PSA sidebar, navigate to Members.

Click on the API Keys tab.

Click on the + icon to create a new API key.

Enter a description in the Description field and click Save.

Copy the Public Key and Private Key for use in the next step.

Use the following curl command to create a callback via the ConnectWise REST API:
Replace the following placeholders:
<API-BASE-URL>: use one of the following depending on your region:
https://api-au.myconnectwise.net
https://api-eu.myconnectwise.net
https://api-staging.connectwisedev.com
https://api-na.myconnectwise.net
logincompany: your ConnectWise company login name
publickey: your ConnectWise API public key
privatekey: your ConnectWise API private key
<clientId>: your application's registered client ID
<INTEGRATION-URL>: the ilert alert source URL
After running the command, the callback should appear under Members → API Callbacks in the ConnectWise PSA interface.

Yes, as soon as a ConnectWise callback sends a ticket event with closedFlag value set to true, corresponding alert in ilert will be resolved.
The API user must have permissions to create callbacks and access tickets.
Yes. Create a test ticket in ConnectWise and verify that an alert appears in ilert.
Last updated
Was this helpful?
Was this helpful?
curl -X POST "<API-BASE-URL>/v4_6_release/apis/3.0/system/callbacks" \
-u "logincompany+publickey:privatekey" \
-H "clientId: <clientId>" \
-H "Content-Type: application/json" \
-d '{
"description": "ilert Callback",
"url": "<INTEGRATION-URL>",
"type": "ticket",
"objectId": 1,
"level": "owner",
"inactiveFlag": false
}'