Skip To Content
ArcGIS Developer
Dashboard

Adhoc Job

Description

License:

The ArcGIS Data Reviewer extension is required to use this resource.

Note:

This resource is dependent on the ArcGIS Data Reviewer ArcMap runtime-based server object extension (SOE). ArcGIS Enterprise 10.9.x, part of the ArcGIS 2021 releases, is the last release of ArcGIS Enterprise to support services published from ArcMap.

Consider Data Reviewer capabilities enabled using ArcGIS Pro and integrated in the Validation service.

A REST resource that returns a list of adhoc jobs and details. An adhoc job is a Reviewer batch job (.rbj) that is executed immediately by ArcGIS Data Reviewer.

You execute adhoc jobs using the executeJob operation. You can also query an adhoc job for execution details and job details.

After an adhoc job finishes execution, the server removes the job automatically. The results of the execution remain in the Reviewer workspace, but a record of the job's execution will not display in the adhoc job list.

See executeJob, getJobExecutionDetails and getJobDetails for more information.

Request parameters

ParameterDetails
f

Description: The response format. The default response format is html.

Values: html | json

Example usage

Example 1: Returns a list of adhoc jobs.

https://localhost:6443/arcgis/rest/services/reviewer/MapServer/exts/DataReviewerServer/BatchValidation/adhocJobs?f=pjson

JSON Response example

{
 "adhocJobs": [
  {
   "jobId": "fd9ce9b3-8e21-4bbc-b563-77514a3005b1",
   "title": "",
   "createdBy": "",
   "creationDate": 1335483268000,
   "status": "Executing",
   "settings": {
    "batchJobFileName": "SewerChecks.rbj",
    "sessionId": "Session 1 : Session 1",
    "userName": null,
    "changedFeaturesOnly": false,
    "analysisArea": null,
    "productionWorkspace": "c:\\data\\localgovernment.sde",
    "productionWorkspaceVersion": "SDE.DEFAULT"
   },
   "schedule": null,
   "executionDetails": null
  }
 ]
}