- URL:
- https://[root]/portals/regions
- Methods:
- GET
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=pjsonThe following is a sample ArcGIS Enterprise request URL used to access the regions resource:
https://machine.domain.com/webadaptor/sharing/rest/portals/regions?f=pjsonDescription
The regions resource returns a list of the available regions for your organization.
Request parameters
| Parameter | Details | 
|---|---|
| 
 | Returns the localized names in the specified culture. Examples  | 
| 
 | The response format. The default format is  Values:  | 
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"
  }
]