Skip to main content
GET
/
history
/
identity-link-log
/
count
Get Identity Link Log Count
curl --request GET \
  --url http://{host}:{port}/{contextPath}/history/identity-link-log/count \
  --header 'Authorization: Basic <encoded-value>'
{
  "count": 2
}

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

type
string

Restricts to identity links that have the given type (candidate/assignee/owner).

userId
string

Restricts to identity links that have the given user id.

groupId
string

Restricts to identity links that have the given group id.

dateBefore
string<date-time>

Restricts to identity links that have the time before the given time.

dateAfter
string<date-time>

Restricts to identity links that have the time after the given time.

taskId
string

Restricts to identity links that have the given task id.

processDefinitionId
string

Restricts to identity links that have the given process definition id.

processDefinitionKey
string

Restricts to identity links that have the given process definition key.

operationType
string

Restricts to identity links that have the given operationType (add/delete).

assignerId
string

Restricts to identity links that have the given assigner id.

tenantIdIn
string

Filter by a comma-separated list of tenant ids.

withoutTenantId
boolean

Only include historic identity links that belong to no tenant. Value may only be true, as false is the default behavior.

Response

Request successful.

count
integer

The number of matching instances.