Adhoc Job
- URL:
https://<DataReviewerServer-url>/Batch Validation/adhocJob
- Required Capability:Data Reviewer Server
- Related Resources:Batch Validation
- Version Introduced:10.1
Description

The ArcGIS Data Reviewer for Server extension is required in order to use this resource.
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 for Server.
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
Parameter | Details |
---|---|
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
}
]
}