Get List Count (POST)
Queries for the number of external tasks that fulfill given parameters. This method takes the same message body as the Get External Tasks (POST) method.
Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Body
A JSON object with the following properties:
Filter by an external task's id.
Filter by the comma-separated list of external task ids.
Filter by an external task topic.
Filter by the id of the worker that the task was most recently locked by.
Only include external tasks that are currently locked (i.e., they have a lock time and it has not expired).
Value may only be true, as false matches any external task.
Only include external tasks that are currently not locked (i.e., they have no lock or it has expired).
Value may only be true, as false matches any external task.
Only include external tasks that have a positive (> 0) number of retries (or null). Value may only be
true, as false matches any external task.
Only include external tasks that have 0 retries. Value may only be true, as false matches any
external task.
Filter by the id of the activity that an external task is created for.
Filter by the comma-separated list of ids of the activities that an external task is created for.
Filter by the id of the execution that an external task belongs to.
Filter by the id of the process instance that an external task belongs to.
Filter by a comma-separated list of process instance ids that an external task may belong to.
Filter by the id of the process definition that an external task belongs to.
Filter by a comma-separated list of tenant ids. An external task must have one of the given tenant ids.
Only include active tasks. Value may only be true, as false matches any external task.
Only include suspended tasks. Value may only be true, as false matches any external task.
Only include jobs with a priority higher than or equal to the given value.
Value must be a valid long value.
Only include jobs with a priority lower than or equal to the given value.
Value must be a valid long value.
Restrict to tasks that belong to a process definition with the given key.
Restrict to tasks that belong to a process definition with one of the given keys. The keys need to be in a comma-separated list.
Restrict to tasks that belong to a process definition with the given name.
Restrict to tasks that have a process definition name that has the parameter value as a substring.
Match all variable names in this query case-insensitively. If set
variableName and variablename are treated as equal.
Match all variable values in this query case-insensitively. If set
variableValue and variablevalue are treated as equal.
A JSON array to only include tasks that belong to a process instance with variables
with certain values. The array consists of JSON objects with three properties
name, operator and value. name is the variable name, operator is the
comparison operator to be used and value the variable value. value may be of
type String, Number or Boolean.
Valid operator values are:
eq - equal to;
neq - not equal to;
gt - greater than;
gteq - greater than or equal to;
lt - lower than;
lteq - lower than or equal to;
like;
notLike.
key and value may not contain underscore or comma characters.
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. The ordering objects have the following properties:
**Note:** The `sorting` properties will not be applied to the External Task count query.Response
Request successful.
The number of matching instances.