- URL:https://<root>/system/properties/update(POST only)
- Required Capability:Default administrator role | Security and infrastructure privilege | Organization website privilege
- Version Introduced:10.3
Description
The update operation updates one or more system properties. All previously modified system properties must be included in the request. Only the properties that have been updated or added to the JSON object will be effected.
Request parameters
Parameter | Details |
---|---|
properties | A JSON object containing system properties. This parameter must include all previously modified system properties in the JSON object. Example
|
f | The response format. The default response format is html. Values: html | json | pjson |
Example usage
The following is a sample POST request for the update operation that demonstrates how to update the privatePortalURL property, formatted for readability:
POST /webadaptor/portaladmin/system/properties/update HTTP/1.1
Host: machine.domain.com
Content-Type:
Content-Length: []
properties={
"nonProxyHosts": "localhost|machine012.domain.com|*.domain.com",
"privatePortalURL": "https://loadbalancer:7443/arcgis"
}&f=pjson
JSON Response example
{
"status": "success",
"recheckAfterSeconds": 10
}