Skip To Content
ArcGIS Developer
Dashboard

Machine

Description

The machine resource returns information on a specific server machine registered with the portal, such as the admin URL for the machine and its OS platform information. A server machine represent a machine on which ArcGIS Enterprise portal software has been installed and licensed. From this resource, you can review the status of the machine and manage SSL certificates when in a highly available portal environment.

Request parameters

ParameterDetails
f

The response format. The default response value is html.

Values: html | json | pjson

Example usage

The following is a sample request URL used to access the machine resource:

https://machine.domain.com/webadaptor/portaladmin/machines/machine.domain.com?f=json

JSON Response example


{
  "machineName": "<machine name>",
  "adminURL": "<admin URL>",
  "role": "<standby|primary>",
  "platform": "<OS platform information>"
}

{
  "machineName": "machine.domain.com",
  "adminURL": "https://machine.domain.com:7443/webadaptor",
  "role": "primary",
  "platform": "Linux-amd64-5.4.17-2136.301.1.4.el8uek.x86_64"
}