- URL:
- https://<root>/system/handlers/rest/servicesdirectory
- Methods:
GET
- Required Capability:
- Access allowed with either the "Update", "Delete", "Security and Infrastructure", or "Servers" privileges
- Version Introduced:
- 10.1
Description
The servicesdirectory
resource lists properties of the ArcGIS Services Directory REST API. You can edit these properties if you want to disable the Services Directory or point its previews at a locally-hosted JavaScript API or to Map Viewer Classic.
Request parameters
Parameter | Details |
---|---|
| The response format. The default response format is Values: |
Example usage
The following is a sample request URL for the servicesdirectory
resource:
https://machine.domain.com/webadaptor/admin/system/handlers/rest/servicesdirectory?f=pjson
JSON Response syntax
{
"jsapi.arcgis.css": <URL of CSS file>,
"jsapi.arcgis.css2": <URL of second CSS file>,
"arcgis.com.map.text": <Text for preview link>,
"allowedOrigins": <Comma separated list of allowed URLs>,
"arcgis.com.map": <URL to >,
"jsapi.arcgis": <URL to JavaScript API>,
"callbackFunctionsEnabled": <true|false>, //Added at 11.0.
"consoleLogging": <true|false>,
"jsapi.arcgis.sdk": <URL of JavaScript API help>,
"enabled": <true|false>
}
JSON Response example
{
"jsapi.arcgis.css": "https://js.arcgis.com/4.23/esri/css/main.css",
"arcgis.com.map.text": "ArcGIS Online Map Viewer",
"logLevel": "SEVERE",
"allowedOrigins": "*",
"arcgis.com.map": "https://www.arcgis.com/home/webmap/viewer.html",
"jsapi.arcgis": "https://js.arcgis.com/4.23/",
"callbackFunctionsEnabled": "true",
"consoleLogging": "false",
"jsapi.arcgis.sdk": "https://developers.arcgis.com/javascript/",
"enabled": "true"
}