Skip To Content
ArcGIS Developer
Dashboard

Query (Reports)

Description

The query operation returns all current health check reports for the organization, returning name of the operation, the start and end time of the health check in UTC format, and whether the organization passed or failed the check, as well as the IDs associated with each report that are needed when using the Reports-level Export and Delete operations. The HTML view of the response provides access to the Report resource.

Request parameters

ParameterDetails
runResult

(Optional)

Filters reports by their health check result.

Values: passed | failed

num

(Required)

The maximum number of results to be included in the response. The default value is 1000.

Example

num=1000
f

The response format. The default format is html.

Values: html | json | pjson

Example usage

The following is a sample request for the query operation:


https://organization.domain.com/context/admin/healthCheck/reports/query?runResult=passed&num=1000&f=html

JSON Response example


{
  "total": 1,
  "num": 1000,
  "start": 1,
  "nextStart": -1,
  "runs": [
    {
      "owner": "system",
      "result": "passed",
      "createdBy": "administrator",
      "name": "DemoReport",
      "startTime": 1699148551031,
      "id": "prslejr7yt",
      "endTime": 1699148563298,
      "state": "completed"
    }
  ]
}