Search fields
Task filters enable users to search tasks that meet one or more of the configured criteria. These filters can be configured by an admin.
Configuring task search fields
Go to the
AdminmenuGo to the
TasksmenuSelect the case to configure search fields for
On the Search fields tab, search fields can be added, edited or removed.

When adding or editing a search field, the available options are similar to the case search fields. More information on case search fields can be found here.
For task list filters the following path prefixes are available:
doc:case:
Task search fields can be auto-deployed by creating json files on the classpath following this pattern: classpath*:**/*.task-search-field.json. The name of the file does not matter, but it is advised to keep it in line with the object title.
You can find an example of the JSON below:
[
{
"key": "caseAssignee",
"title": "Case assignee",
"path": "case:assigneeFullName",
"dataType": "TEXT",
"fieldType": "SINGLE",
"matchType": "LIKE"
},
{
"key": "createdBy",
"title": "Case created by",
"path": "case:createdBy",
"dataType": "TEXT",
"fieldType": "SINGLE",
"matchType": "LIKE"
}
]More information on the available fields and values can be found here.
Using task search fields
Since task filters are configured on a case, they will only be available when the user selects a case from the dropdown. For 'All cases', the additional filters will not be available.
With these filters, a user can filter on data from the document or case the task relates to.

Just like the case search filters, these filters will behave differently depending on how the admin configured the fields.
Import and export
The configuration task search fields is included in the case definition import and export by default.
Last updated