- URL:
- https://<root>/<serviceName>/VersionManagementServer/versions/<versionGuid>/alter
- Methods:
POST
- Required Capability:
- ArcGIS Advanced Editing user type extension license
- Version Introduced:
- 10.6
Description
The alter
operation allows you to change the owner
, version
, description
, and access
for a version.
Only the version owner or version administrator for the service can alter a version.
Request parameters
Parameter | Details |
---|---|
| Specifies the output format of the response. The default response format is Values: |
| Specifies the new owner's name. Example: |
| Specifies the new version name. Example: |
| Specifies a new description of the version. Example: |
| Specifies the new access permission for the altered version. Values: Example: |
JSON Response Syntax
{
"success" : <true | false>,
"error" : { // only if success is false
"extendedCode" : <HRESULT>,
"message" : <error message>,
"details" : [ <detail> ]
}
}
Example usage
Set the access
parameter to public
for a named version using the alter
operation.
Request URL and parameters:
https
accessPermission=public
JSON response:
{
"success": true
}