curl --request POST \
--url https://api.example.com/admin/jobrun/filter/grouped-by-date \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"jobRunTypeID": 1,
"jobStatusTypeID": null,
"startDate": null,
"endDate": null,
"page": 1,
"pageSize": 30
}
'{
"success": true,
"data": "<unknown>"
}Returns the count of job runs by filter, but grouped by date.
curl --request POST \
--url https://api.example.com/admin/jobrun/filter/grouped-by-date \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"jobRunTypeID": 1,
"jobStatusTypeID": null,
"startDate": null,
"endDate": null,
"page": 1,
"pageSize": 30
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.