Delete Rasters
- URL:http://<imageservice-url>/delete(POST only)
- Required Capability:Edit
- Version Introduced:10.1
Description
License:As of 10.5, you must license your ArcGIS Server as an ArcGIS Image Server in order to use this resource.
This operation is supported at 10.1 and later.
The Delete Rasters operation is performed on an image service resource.
The Delete Rasters operation deletes one or more rasters in an image service (POST only).
You can provide arguments to the delete rasters operation as query parameters defined in the following parameters table:
Request parameters
|
Parameter |
Details |
|---|---|
| f |
Description: The response format. The default response format is html. Values: html | json |
| rasterIds | Description: The object IDs of raster catalog items to be deleted. Syntax: rasterIds=<rasterId1>, <rasterId2> Example: rasterIds=37, 462 |
Example usage
Delete two rasters from an image service by specifying the following for rasterIds: 37,462.
http://myserver/arcgis/rest/sampleImage/ImageServer/delete?rasterIDs=37,462
JSON response syntax
{
"deleteResults" : [
{
"rasterId" : <rasterId1>,
"success" : <true | false>,
"error" : { //only if success is false
"code" : <code1>,
"description" : "<description1>"
}
},
{
"rasterId" : <rasterId2>,
"success" : <true | false>,
"error" : { //only if success is false
"code" : <code2>,
"description" : "<description2>"
}
}
]
}
JSON response example
{
"deleteResults" : [
{
"rasterId" : 37,
"success" : true
},
{
"rasterId" : 462,
"success" : true
}
]
}