Find us at our new Help Center where we've combined our documentation and knowledgebase articles in one easy-to-search location.
We aren't updating the Developer Portal anymore, except for the Element Docs — all updates happen in the Help Center. We're retiring the Developer Portal as you know it in:
The Cloud Elements Events Framework provides a uniform mechanism for subscribing to events from API providers like Salesforce, HubSpot,
QuickBooks, and Dropbox. Our Events Framework gives you the flexibility to receive notifications to your app regarding user activity by having our Elements subscribe to API provider events. API providers publish changes to notify the elements that events have occurred. For example, a user uploads a file to her Dropbox account using the Dropbox user interface. This change is published to our Dropbox element. The Dropbox element notifies your app that a new file has been uploaded. Your app can then be updated with the most current data making it that much more cooperative and powerful.
Cloud Elements currently supports building integrations with polling or webhooks capability.
With Polling Cloud Elements executes a configured query every n minutes and captures the changed information.
With Webhooks the API provider lets Cloud Elements know what information has changed. Some API providers require some additional configuration setup for Event Management. Instructions and screen shots for these configurations can be found in the Element Guides under Events for each API provider.
Events can be sent to your application by setting the Event Notification Callback URL (event.notification.callback.url
) configuration value to your application's URL during provisioning, such as https://mycoolapp.com/callback
. You can also return events to the elements with an Event Notification Callback URL like https://api.cloud-elements.com/elements/api-v2/events/<Element-Key>/
.
To update an active instance use the PATCH /instances or PATCH /instances/{id}/configuration/{configurationId} endpoints to add an Event Notification Callback URL.