Oplog API
Last updated
Last updated
The JourneyApps Oplog API provides an ordered log of all create, update and delete operations that occurred on the cloud datastore for one of your JourneyApps applications. Polling the Oplog allows you to sync your own database with JourneyApps.
Relative URL | HTTP Request Method |
---|---|
start
and end
specify the range of sequence IDs (see below for explanation) of the Oplog to query. All entries with start <= sequence_id < end
are returned.
limit
is the limit of entries returned in a single API call. The default is 400, and the maximum is 1000 (subject to change).
The response will contain a list of Oplog entries no more than the limit. If there are no entries in the specified range, an empty array is returned.
Each entry contains the following info:
Key | Description |
---|---|
The response also contains a field called datamodel_hash
, matching the value from datamodel.json
. This can be used to detect changes to the data model (when deployed). Note that this hash is always for the current version of the data model, even when a historical oplog range is requested. Also note that the object
is returned according to the current data model definition, not the historical one.
The Oplog may be polled to monitor changes to the database. Polling should be performed at most once per second. To poll, the client must keep track of the latest sequence id returned. For the next query, that sequence id + 1 should be used in the start
parameter.
If you need to start syncing from a certain point in time, or if you simply want to obtain an app's most recent DB operations, you can do this by appending ?tail=true
to your query. This will return the app's most recent DB operations (currently defaults to 400 operations).
BASE-URL
The below examples contain a BASE-URL
placeholder. Please refer to the HTTP Endpoints section to get the base URL relevant to your deployment.
Response:
/api/v4/
backend-deployment-id
/oplog.json?start=
x
GET
/api/v4/
backend-deployment-id
/oplog.json?start=
x
&end=
y
&limit=
z
GET
sequence
Sequence ID — a strictly incrementing ID identifying the entry. Always greater than 0 and less than 2^63.
operation
create, update or delete.
object
The new state of the object. The updated_at
timestamp is the time that the write was made to the database.