Get Schema Log

Queries for schema log entries that fulfill given parameters.

Method

GET /schema/log

Parameters

Query Parameters

Name Description
version Only return schema log entries with a specific version.
firstResult Pagination of results. Specifies the index of the first result to return.
maxResults Pagination of results. Specifies the maximum number of results to return. Will return less results if there are no more results left.

Result

A JSON array of schema log entry objects. Each schema log entry object has the following properties:

Name Type Description
id String The id of the schema log entry.
version String The version of the schema.
timestamp String The date and time of the schema update.
sortBy Sort the results lexicographically by a given criterion. Valid values are timestamp. Must be used in conjunction with the sortOrder parameter.
sortOrder Sort the results in a given order. Values may be asc for ascending order or desc for descending order. Must be used in conjunction with the sortBy parameter.

Response Codes

Code Media type Description
200 Request successful. Note: In order to get any results a user of group camunda-admin must be authenticated.

Example

Request

GET /schema/log

Response

Status 200

[
  {
    "id": "0",
    "version": "7.11.0",
    "timestamp": "2019-05-13T09:07:11.751+0200"
  },
  {
    "id": "1",
    "version": "7.11.1",
    "timestamp": "2019-06-1T17:22:05.123+0200"
  }
]

On this Page: