Skip To Content
ArcGIS Developer
Dashboard

Cancel

  • URL:https://<jobs-url>/cancel
  • Version Introduced:10.9

Description

License:

The use of this resource requires an ArcGIS GIS Server Advanced license and a Production Mapping or Defense Mapping server extension license.

The cancel operation cancels a job submitted through the generateProduct REST operation. It returns a standard REST success or error message.

Request parameters

ParameterDetails
jobId

(Required)

The unique job identifier to add to the query URL, for example, ...jobs/cancel?jobId=<jobID>.

f

(Required)

Specifies the response format.

Values: json | html

Example usage

The following URL cancels a job:

https://machine.domain.com/server/rest/services/Test/TopographicProductionServer/jobs/cancel?f=json&jobId=j12fd478e78d042e88a34f08a4836fb73

JSON Response syntax

The following is the syntax of a response:


{
"success" : <true | false>
}

JSON Response example

The following is an example of a successful response:


{
 "success": true
}