Oplog API

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 URLHTTP Request Method

/api/v4/backend-deployment-id/oplog.json?start=x

GET

/api/v4/backend-deployment-id/oplog.json?start=x&end=y&limit=z

GET

Parameters

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).

Response

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:

KeyDescription

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.

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.

Polling

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.

Obtaining the most recent entries

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).

Examples

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.

Retrieve the 5 first writes to the database:

GET BASE-URL/api/v4/533bda53027894f69b001055/oplog.json?limit=5&start=0

Response:

json
{
    "entries": [
        {
            "sequence": 6009123137931706000,
            "operation": "update",
            "events": [],
            "object": {
                "id": "42059e2e-d2a2-11e3-a9f3-001e6733fe3c",
                "type": "task",
                "updated_at": "2014-05-03T09:06:48Z",
                "name": "First Task",
                "instructions": "Update me",
                "status": null,
                "category_id": null
            }
        },
        {
            "sequence": 6112271540663878000,
            "operation": "create",
            "events": [],
            "object": {
                "id": "1e47acd2-ad0f-11e4-8513-001e6733fe3c",
                "type": "user",
                "updated_at": "2015-02-05T08:15:17Z",
                "name": "Joe Smith"
            }
        },
        {
            "sequence": 6112271738232373000,
            "operation": "update",
            "events": [],
            "object": {
                "id": "1e47acd2-ad0f-11e4-8513-001e6733fe3c",
                "type": "user",
                "updated_at": "2015-02-05T08:16:03Z",
                "name": "Bruce Wayne"
            }
        },
        {
            "sequence": 6112271772592112000,
            "operation": "create",
            "events": [],
            "object": {
                "id": "3e7e18b0-ad0f-11e4-9d6d-001e6733fe3c",
                "type": "user",
                "updated_at": "2015-02-05T08:16:11Z",
                "name": "Tony Stark"
            }
        },
        {
            "sequence": 6112271910031065000,
            "operation": "update",
            "events": [],
            "object": {
                "id": "71fafc16-ba4f-11e3-8de0-001e6733fe3c",
                "type": "category",
                "updated_at": "2015-02-05T08:16:43Z",
                "name": "Cleaning"
            }
        }
    ],
    "datamodel_hash": "d9cca721a735dac4efe709e0f3518373"
}

Retrieve the next 5 writes:

GET BASE-URL/api/v4/533bda53027894f69b001055/oplog.json?limit=5&start=6112271910031065000

Last updated