Skip to main content
GET
/
schema
/
log
Get List
curl --request GET \
  --url http://{host}:{port}/{contextPath}/schema/log \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "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"
  }
]

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Query Parameters

version
string

Only return schema log entries with a specific version.

sortBy
enum<string>

Sort the results lexicographically by a given criterion. Must be used in conjunction with the sortOrder parameter.

Available options:
timestamp
sortOrder
enum<string>

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.

Available options:
asc,
desc
firstResult
integer

Pagination of results. Specifies the index of the first result to return.

maxResults
integer

Pagination of results. Specifies the maximum number of results to return. Will return less results if there are no more results left.

Response

200 - application/json

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

id
string | null

The id of the schema log entry.

timestamp
string<date-time> | null

The date and time of the schema update.

version
string | null

The version of the schema.