FRAMES | NO FRAMES | Description | Parameters | Examples | Response |
URL | http://<featurelayer-url>/deleteFeatures (POST only) |
Parent Resource | Layer |
---|
This operation deletes features in a feature layer or table (POST only). The delete features operation is performed on a feature service layer resource. The result of this operation is an array of edit results. Each edit result identifies a single feature and indicates if the edits were successful or not. If not, it also includes an error code and an error description.
You can provide arguments to the delete operation as query parameters defined in the parameters table below.
Parameter | Details |
---|---|
f |
Description: The
response format. The default response format is html. Values: html | json | pjson |
objectIds |
Description:
The object IDs of this layer / table to be deleted.
Note that when this parameter is specified, any other filter parameters (including where )
are ignored.
Syntax: objectIds=<objectId1>, <objectId2>
Example: objectIds=37, 462
|
where |
Description:
A where clause for the query filter. Any legal SQL where clause operating on the fields in the layer is
allowed. Features conforming to the specified where clause will be deleted.
Note that this parameter will be ignored if objectIds are specified.
Example: where=POP2000 > 350000
|
geometry |
Description:
The geometry to apply as the spatial filter.
Features conforming to the spatial relationship (specified using the spatialRel parameter)
of this geometry will be deleted.
Note that this parameter will be ignored if objectIds are specified.
The structure of the geometry is the same as the structure of json geometry objects. In addition to the JSON structures, for envelopes and points, you can specify the geometry with a simpler comma-separated syntax. Syntax:
|
geometryType | Description: The type of geometry specified by the geometry
parameter. The geometry type can be an envelope, point, line,
or polygon. The default geometry type is an envelope.Values: esriGeometryPoint | esriGeometryMultipoint | esriGeometryPolyline | esriGeometryPolygon | esriGeometryEnvelope |
inSR |
Description: The spatial reference of the input geometry .
The spatial reference can be specified as either a well-known ID or as a spatial reference json object. If the inSR
is not specified, the geometry
is assumed to be in the spatial reference of the map. |
spatialRel | Description: The spatial relationship to be applied on the input geometry
while performing the query. The supported spatial relationships include
intersects, contains, envelope intersects, within, etc. The default
spatial relationship is intersects (esriSpatialRelIntersects ).Values: esriSpatialRelIntersects
| esriSpatialRelContains | esriSpatialRelCrosses |
esriSpatialRelEnvelopeIntersects | esriSpatialRelIndexIntersects |
esriSpatialRelOverlaps | esriSpatialRelTouches | esriSpatialRelWithin |
rollbackOnFailure |
Description:
Optional parameter to specify if the edits should be applied only if all submitted edits succeed.
If false, server will keep the edits that succeed even if some of the submitted edits fail.
If true, server will keep the edits only if all edits succeed.
Default value is false.
Syntax: rollbackOnFailure=true|false
Example: rollbackOnFailure=true
|
Example 1: Delete features using the delete features operation on a feature service layer resource: http://sampleserver10.arcgisonline.com/arcgis/rest/services/Utilities/FeatureServer/0/deleteFeatures
The input to Delete features operation can be a list of objectIds
and/or where
clause and/or geometry
to apply as a spatial filter.
objectIds
are specified){ "deleteResults" : [ { "objectId" : <objectId1>, "success" : <true | false>, "error" : { //only if success is false "code" : <code1>, "description" : "<description1>", } }, { "objectId" : <objectId2>, "success" : <true | false>, "error" : { //only if success is false "code" : <code2>, "description" : "<description2>", } } ] }
objectIds
are not specified){ "success" : true }
{ "deleteResults" : [ { "objectId" : 4011, "success" : true }, { "objectId" : 4012, "success" : false, "error" : { "code" : 1005, "description" : "The specified feature could not be deleted or does not exist." } } ] }