Manage Changesets

Get Changesets

Retrieves a subset of existing Changesets from the space's history. The subset can be defined either by a "startVersion" and an "endVersion" or by providing a version ref that references a version range e.g., "5..6" or "0..HEAD"

Each successful write transaction to the space is stored as one single Changeset, which can contain modifications applied to one or more features.

The response payload may be split in multiple pages. The next page token is written in the property 'nextPageToken', which then can be used to retrieve the next page using the 'pageToken' parameter on the next call.

get/spaces/{spaceId}/changesets

Path parameters

spaceIdstring required

The unique identifier of the space.

Query parameters

versionRefstring

The query parameter used to specify the version reference pointing to a tag or a version.

startVersioninteger

Defines the start of the version-range [version >= startVersion].

endVersioninteger

Defines the end of the version-range [version <= endVersion].

pageTokenstring

The page token where the iteration continues.

limitinteger

The maximum number of features in the response. Default is 30000. Hard limit is 100000.

Response

A collection of Changesets which contains FeatureCollections grouped by operation.

Changes