- URL:
- https://<root>/<serviceName>/GeoDataServer/unRegisterReplica
- Methods:
POST
- Version Introduced:
- 10.2.1
Description
The un
operation is performed on a Geodata Service resource. This operation unregisters a replica on the geodata service. Unregistering a replica is only supported when logged in as an admin user.
You can provide arguments to the un
operation as defined in the following parameters table:
Request parameters
Parameter | Details |
---|---|
|
The response format. The default response format is Values: |
| The ID of the replica. The ID of a replica can be found by accessing the Geodata Service Replicas resource. This is a required parameter. Syntax: Example: |
Example usage
Example 1: Unregister a replica:
https
}
JSON Response syntax
{
"success": <true | false>,
"error": {
"code": <error>,
"message": "<message>",
"details": "<details>"
}
}
JSON Response example
{
"success": true
}
JSON Response example
Unregistering replica fails because replica not found.
{
"error": {
"code": 1,
"message": "Unable to complete operation.",
"details": [
"Replica not found."
]
}
}