Delete

URL:
https://<root>/<serviceName>/VersionManagementServer/delete
Methods:
POST
Required Capability:
ArcGIS Advanced Editing user type extension license
Version Introduced:
10.6

Description

Delete the specified version. The deletion will fail if the version is in use or the connected user is not the owner.

Request parameters

ParameterDetails

f

Specifies the output format of the response. The default response format is html.

Values: html | json | pjson

versionName (Required)

Specifies the name of the version to be deleted.

Syntax: versionName = <versionName>

sessionId (Optional)

Specifies the client-generated session ID (GUID). The session ID is often passed as a logical lock token for the version being edited.

Syntax: sessionId = {3F2504E0-4F89-41D3-9A0C-0305E82C3301}

JSON Response syntax

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
{
  "success" : <true | false>,
  "error" : { // only if success is false
    "extendedCode" : <HRESULT>,
    "message" : <error message>,
    "details" : [ <detail> ]
  }
}

Example usage

Delete a named version using the delete operation.

Request URL and parameters:

https://myserver.esri.com/server/rest/services/LandUse/VersionManagementServer/delete

Use dark colors for code blocksCopy
1
2
f=json
versionName=portaluser.carolina

JSON response:

Use dark colors for code blocksCopy
1
2
3
{
 "success": true
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.