cURL
curl --request GET \ --url http://{host}:{port}/{contextPath}/task/report/candidate-group-count \ --header 'Authorization: Basic <encoded-value>'
[ { "groupName": null, "taskCount": 1 }, { "groupName": "aGroupName", "taskCount": 2 }, { "groupName": "anotherGroupName", "taskCount": 3 } ]
Retrieves the number of tasks for each candidate group.
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
Request successful.
The name of the candidate group. If there are tasks without a group name, the value will be null
null
The number of tasks which have the group name as candidate group.