Skip to main content
POST
/
admin
/
jobrun
/
filter
/
grouped-by-date
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>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
jobRunTypeID
integer<int32> | null
default:1
jobStatusTypeID
integer<int32> | null
startDate
string<date-time> | null
endDate
string<date-time> | null
page
integer<int32>
default:1
pageSize
integer<int32>
default:30

Response

Success

success
boolean
data
unknown