Skip to main content
POST
/
schema
/
log
Get List (POST)
curl --request POST \
  --url http://{host}:{port}/{contextPath}/schema/log \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "version": "7.11.0",
  "sortBy": "timestamp",
  "sortOrder": "asc"
}'
[
  {
    "id": "0",
    "version": "7.11.0",
    "timestamp": "2019-05-13T09:07:11.751+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

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.

Body

application/json
version
string | null

The version of the schema.

sorting
object[] | null

A JSON array of criteria to sort the result by. Each element of the array is a JSON object that specifies one ordering. The position in the array identifies the rank of an ordering, i.e., whether it is primary, secondary, etc.

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.