Skip to main content
GET
/
task
/
report
/
candidate-group-count
Get Task Count By Candidate Group
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
  }
]

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

Request successful.

groupName
string | null

The name of the candidate group. If there are tasks without a group name, the value will be null

taskCount
integer | null

The number of tasks which have the group name as candidate group.