FRAMES | NO FRAMES Description | Parameters | Response
URL:http://server:port/arcgis/admin/system/webadaptors
HTTP Method:GET
Parent Resource: System
Supported Operations: Register Web Adaptor  
Child Resources: Web Adaptor Configuration   Web Adaptor  

Description

This operation lists all the Web Adaptors that have been registered with the site. The server will trust all these web adaptors and will authorize calls from these servers.

To add a new Web Adaptor, use the Register Web Adaptor operation.

Parameters

Parameter Description
f The response format. The default response format is html.
Values: html | json

Response Format

{
	"webadaptors": [
		<webadaptor1>, <webadaptor2>, ...
	]				
}
			

Example

{
	"webAdaptors": [
  		{
    		"webAdaptorURL": "http://external.gis.com/arcgis",
    		"id": "9c5c8fd4-a611-444e-ad06-b9f8be4a9aff",
    		"description": "GIS web endpoint for external customers.",
    		"httpPort": 80,
    		"httpsPort": 443,
    		"isAdminEnabled": false
  		},
  		{
    		"webAdaptorURL": "http://internal.gis.com/arcgis",
    		"id": "ba601d76-c9fe-4831-aac9-c23dde188075",
    		"description": "GIS web endpoint for organization users.",
    		"httpPort": 80,
    		"httpsPort": 443,
    		"isAdminEnabled": true
  		}
	]
}