- URL:https://[root]/portals/regions
Example usage
The following is a sample ArcGIS Online request URL used to access the regions resource:
https://org.arcgis.com/sharing/rest/portals/regions?f=pjson
The following is a sample ArcGIS Enterprise request URL used to access the regions resource:
https://machine.domain.com/webadaptor/sharing/rest/portals/regions?f=pjson
Description
The regions resource returns a list of the available regions for your organization.
Request parameters
Parameter | Details |
---|---|
culture | Returns the localized names in the specified culture. Examples
|
f | The response format. The default format is html. Values: html | json | pjson |
JSON Response syntax
[
{
"name": "<region_name>",
"region": "<region_abbreviation>",
"localizedName": "<localized name>"
}
]
JSON Response example
[
{
"name": "World",
"region": "WO",
"localizedName": "World"
},
{
"name": "Australia",
"region": "AU",
"localizedName": "Australia"
},
{
"name": "Austria",
"region": "AT",
"localizedName": "Austria"
},
{
"name": "Bolivia",
"region": "BO",
"localizedName": "Bolivia"
},
{
"name": "Brazil",
"region": "BR",
"localizedName": "Brazil"
}
]