Events

Cloud Elements supports events via polling or webhooks depending on the API provider. If you would like to see more information on our Events framework, please see the Event Management Guide.

Supported Events and Resources

Cloud Elements supports webhook events for ConnectWise. For more information about webhooks at ConnectWise including the currently available webhooks, see ConnectWise's webhooks documentation.

Webhooks

You can configure webhooks through the UI or in the JSON body of the /instances API request .

Configure Webhooks Through the UI

For more information about each field described here, see Parameters.

To authenticate an element instance with webhooks:

  1. Complete the [authentication steps(authenticate.html#authenticate-through-the-ui)] up to entering the Shopify URL.
  2. To enable hash verification in the headers of event callbacks, click Show Optional Fields, and then add a key to Callback Notification Signature Key.
  3. Enable events: Switch Events Enabled on. event-enabled-on
  4. Add an Event Notification Callback URL.
  5. Optionally type or select one or more Element Instance Tags to add to the authenticated element instance.
  6. Click Create Instance.
  7. Provide your ConnectWise credentials, and then allow the connection.

After successfully authenticating, we give you several options for next steps. Make requests using the API docs associated with the instance, map the instance to a virtual resource, or use it in a formula template.

Configure Webhooks Through API

Use the /instances endpoint to authenticate with ConnectWise and create an element instance with webhooks enabled.

To authenticate an element instance with webhooks:

  1. Construct a JSON body as shown below (see Parameters):

    {
      "element": {
        "key": "connectwisehd"
      },
      "configuration": {
        "helpdesk.connectwise.username": "<INSERT_CONNECTWISE_USERNAME>",
        "helpdesk.connectwise.password": "<INSERT_CONNECTWISE_PASSWORD>",
        "helpdesk.connectwise.server.url": "<INSERT_CONNECTWISE_SERVER_URL>",
        "helpdesk.connectwise.company": "<INSERT_CONNECTWISE_COMPANY>",
        "event.notification.enabled": true,
        "event.notification.callback.url": "<CALLBACK_URL>",
        "event.notification.signature.key": "<OPTIONAL_SIGNATURE_KEY>"
      },
      "tags": [
        "<Add_Your_Tag>"
      ],
      "name": "<INSTANCE_NAME>"
    }
    
    
  2. Call the following, including the JSON body you constructed in the previous step:

    POST /instances
    
  3. Locate the token and id in the response and save them for all future requests using the element instance.

Example cURL

curl -X POST \
  https://api.cloud-elements.com/elements/api-v2/instances \
  -H 'authorization: User <USER_SECRET>, Organization <ORGANIZATION_SECRET>' \
  -H 'content-type: application/json' \
  -d '{
  "element": {
    "key": "connectwisehd"
  },
  "configuration": {
    "helpdesk.connectwise.username": "xxxxxxxx",
    "helpdesk.connectwise.password": "xxxxxxxxxxxxxx",
    "helpdesk.connectwise.server.url": "http://api-cloudelements.connectwisedev.com",
    "helpdesk.connectwise.company": "cloudelements",
    "event.notification.enabled": true,
    "event.notification.callback.url": "https://mycoolapp.com/events",
    "event.notification.signature.key": "xxxxxxxxxxxxxxxxxxxxxxxxx"
  },
  "tags": [
    "Docs"
  ],
  "name": "API Instance"
}'

Parameters

API parameters not shown in the Cloud Elements are in code formatting.

Parameter Description Data Type
'key' The element key.
connectwisecrmrest
string
Name
name
The name for the element instance created during authentication. Body
Server URL
helpdesk.connectwise.server.url
The url of your ConnectWise site with api- appended. string
Company
company
The company name that you use to log in. string
User Name
public.key
Your ConnectWise user name. string
Password
private.key
Your ConnectWise password. string
WSDL Path
helpdesk.connectwise.wsdl.path
The WSDL path appears in the URL that ConnectWise redirects you to after you log in. For example, in https://my.connectwise.com/v2017_2/ConnectWise.aspx?locale=en_US&session=..., the WSDL path is /v2017_2/apis/2.0/. string
Filter null values from the response
filter.response.nulls
Optional. Determines if null values in the response JSON should be filtered from the response. Yes or true indicates that Cloud Elements will filter null values.
Default: true
boolean
Events Enabled
event.notification.enabled
Optional. Identifies that events are enabled for the element instance.
Default: false.
boolean
Event Notification Callback URL
event.notification.callback.url
The URL where you want Cloud Elements to send the events. string
Callback Notification Signature Key
event.notification.signature.key
Optional. A user-defined key for added security to show that events have not been tampered with. string
tags Optional. User-defined tags to further identify the instance. string