Skip To Content
ArcGIS Developer
Dashboard

Enable 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 resumes a batch job's schedule. You can pause a batch job's schedule with disableJob. disableJob suspends a job's schedule. It does not delete the job or cancel execution of a job.

Request parameters

ParameterDetails
f

The response format. The default response format is html.

Values: html | json

Example usage

Example 1: Resume the schedule for job e1f43a16-f5aa-49e9-a562-271a97102fd3.

https://localhost:6443/arcgis/rest/services/reviewer/MapServer/exts/DataReviewerServer/BatchValidation/scheduledJobs/e1f43a16-f5aa-49e9-a562-271a97102fd3/enableJob?f=pjson

JSON Response example

{
  "enabled": true
}

JSON Response example

A response for a job that is not scheduled.

{
  "error" : {
    "code" : 500,
    "message" : "Job not found: 60ef089d-6c35-43f7-91f4-1649fbd39028"
  }
}