Skip to main content
Please test your implementation on the sandbox/staging environment before releasing to PRODUCTION

Welcome

There are 2 prominent APIs that are needed to poll for audit_data changes.
audit data for a specific object is the trail of changes that were committed sequentially for all records within

Authentication

All API endpoints are authenticated using Bearer tokens

Implementation

Poll data api will return an array objects where each object contains the slug of the object the data was requested for along with the corresponding audit_data. The audit_data in turn contains pointer that helps identify the point in time from which one would like to poll again. Any data prior to the pointer will be considered processed by the client and hence ignored by Superleap. To make the polling service stateful, you can either save the last pointer at your end and pass it on the next call to poll data. Or, recommended approach is to commit the latest pointer before shutting down the service, on the next call if pointer is empty, superleap will take the latest committed pointer and continue accordingly