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 Value 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 schame update.

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: