Skip To Content
ArcGIS Developer
Dashboard

/refreshServer: Refresh server

  • URL:https://[root]/portals/[portalID]/datastores/refreshServer(POST only)
  • Version Introduced:10.7.1

Example usage

Below is a sample ArcGIS Enterprise POST request for the refreshServer operation:


POST /webadaptor/sharing/rest/portals/0123456789ABCDEF/datastores/refreshServer HTTP/1.1
Host: machine.domain.com
Content-Type: application/x-www-form-urlencoded
Content-Length: []

datastoreId=55d87f404a7e420bb969ccb70254bfec&serverId=9sQswqEpB31ymiCD&f=pjson

Description

After a data store has been registered, there may be times in which the data store's registration information may be changed. When changes like these occur, the server will need to be updated with the newly configured information so that your users will still be able to access the data store items without interruption. The refreshServer operation can be called to propagate these changes to your ArcGIS Server. This operation can only be performed after the data store information has been updated.

Request parameters

ParameterDetails
datastoreId

(Required)

The itemId of the data store that has been updated.

Example

datastoreId=55d87f404a7e420bb969ccb70254bfec
serverId

(Required)

The serverId. A data store may be registered across multiple servers. Use the getServers operation to return every server the data store is registered to.

serverId=9sQswqEpB31ymiCD
f

The response format. The default format is html.

Value: html | json | pjson

JSON Response examples

If successful, refreshServer will return the following success message:

{"success": true}

If the operation fails, refreshServer will return an error similar to the message below:


{
  "error": {
    "code": 500,
    "message": "Server is not reachable.",
    "details": [
      "Server is not reachable."
    ]
  }
}