Skip to main content
GET
/
user
/
count
Get List Count
curl --request GET \
  --url http://{host}:{port}/{contextPath}/user/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

id
string

Filter by user id

idIn
string

Filter by a comma-separated list of user ids.

firstName
string

Filter by the first name of the user. Exact match.

firstNameLike
string

Filter by the first name that the parameter is a substring of.

lastName
string

Filter by the last name of the user. Exact match.

lastNameLike
string

Filter by the last name that the parameter is a substring of.

email
string

Filter by the email of the user. Exact match.

emailLike
string

Filter by the email that the parameter is a substring of.

memberOfGroup
string

Filter for users which are members of the given group.

memberOfTenant
string

Filter for users which are members of the given tenant.

potentialStarter
string

Only select Users that are potential starter for the given process definition.

Response

Request successful.

count
integer

The number of matching instances.