- URL:https://<types-url>/providers
- Required Capability:Default administrator role | All authorized privileges
Description
The providers resource returns the supported provider types for the GIS services in your organization. At 10.9.1, this resource includes an enabled providers section that specifies which of the supported providers are currently enabled.
Note:
At 10.9.1, when installing ArcGIS Server you will have the option to disable the ArcMap service runtime, removing Python 2.x from your deployment. If the ArcMap runtime is disabled, it will not be listed as an enabled provider. For more information on disabling the ArcMap runtime, see Security best practices.
Request parameters
Parameter | Details |
---|---|
f | The response format. The default format is html. Values: html | json | pjson |
Example usage
Below is a sample POST request for the providers resource:
https://machine.domain.com/webadaptor/admin/services/types/providers?f=pjson
JSON Response examples
The following response is returned when both the ArcMap and ArcGIS Pro runtimes are enabled:
{
"providers": [
"ArcObjects",
"ArcObjects11"
],
"enabledProviders": [
"ArcObjects11",
"ArcObjects"
]
}
The following response is returned when the ArcMap runtime is disabled:
{
"providers": [
"ArcObjects",
"ArcObjects11"
],
"enabledProviders": ["ArcObjects11"]
}