Skip To Content
ArcGIS Developer
Dashboard

Update (System Properties)

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

ParameterDetails
properties

A JSON object containing system properties. This parameter must include all previously modified system properties in the JSON object.

Example

properties={"nonProxyHosts": "localhost|machine012.domain.com|*.domain.com","privatePortalURL": "https://loadbalancer:7443/arcgis"}
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
}