Skip to main content
GET
/
history
/
user-operation
/
count
Get User Operation Log Count
curl --request GET \
  --url http://{host}:{port}/{contextPath}/history/user-operation/count \
  --header 'Authorization: Basic <encoded-value>'
{
  "count": 1
}

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

deploymentId
string

Filter by deployment id.

processDefinitionId
string

Filter by process definition id.

processDefinitionKey
string

Filter by process definition key.

processInstanceId
string

Filter by process instance id.

executionId
string

Filter by execution id.

caseDefinitionId
string

Filter by case definition id.

caseInstanceId
string

Filter by case instance id.

caseExecutionId
string

Filter by case execution id.

taskId
string

Only include operations on this task.

externalTaskId
string

Only include operations on this external task.

batchId
string

Only include operations on this batch.

jobId
string

Filter by job id.

jobDefinitionId
string

Filter by job definition id.

userId
string

Only include operations of this user.

operationId
string

Filter by the id of the operation. This allows fetching of multiple entries which are part of a composite operation.

operationType
string

Filter by the type of the operation like Claim or Delegate. See the Javadoc for a list of available operation types.

entityType
string

Filter by the type of the entity that was affected by this operation, possible values are Task, Attachment or IdentityLink.

entityTypeIn
string

Filter by a comma-separated list of types of the entities that was affected by this operation, possible values are Task, Attachment or IdentityLink.

category
string

Filter by the category that this operation is associated with, possible values are TaskWorker, Admin or Operator.

categoryIn
string

Filter by a comma-separated list of categories that this operation is associated with, possible values are TaskWorker, Admin or Operator.

property
string

Only include operations that changed this property, e.g., owner or assignee.

afterTimestamp
string<date-time>

Restrict to entries that were created after the given timestamp. By default, the timestamp must have the format yyyy-MM-dd'T'HH:mm:ss.SSSZ, e.g., 2013-01-23T14:42:45.000+0200.

beforeTimestamp
string<date-time>

Restrict to entries that were created before the given timestamp. By default, the timestamp must have the format yyyy-MM-dd'T'HH:mm:ss.SSSZ, e.g., 2013-01-23T14:42:45.000+0200.

Response

Request successful.

count
integer

The number of matching instances.