/languages: Languages

URL:
https://[root]/portals/languages
Methods:
GET

Example usage

The following is a sample ArcGIS Online request URL used to access the languages resource:

Use dark colors for code blocksCopy
1
https://org.arcgis.com/sharing/rest/portals/languages?f=pjson

The following is a sample ArcGIS Enterprise request URL used to access the languages resource:

Use dark colors for code blocksCopy
1
https://machine.domain.com/webadaptor/sharing/rest/portals/languages?f=pjson

Description

The languages resource returns all available and supported languages for your organization. The response returned lists the language, the culture code for each language, as well as the language's localized name.

Request parameters

ParameterDetails

f

The response format. The default format is pjson.

Values: json | pjson

JSON Response syntax

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
[
  {
    "language":"<language>",
    "culture":"<culture code>",
    "localizedName":"<localized name>"
  },
  {
    "language":"<language>",
    "culture":"<culture code>",
    "localizedName":"<localized name>"
  }
]

JSON Response example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
[
  {
    "language": "Arabic",
    "culture": "ar",
    "localizedName": "عربي"
  },
  {
    "language": "Bosnian",
    "culture": "bs",
    "localizedName": "Bosanski"
  },
  {
    "language": "Bulgarian", //Added at  11.0
    "culture": "bg",
    "localizedName": "Български"
  },
  {
    "language": "Simplified Chinese",
    "culture": "zh-CN",
    "localizedName": "简体中文"
  },
  {
    "language": "Catalan",
    "culture": "ca",
    "localizedName": "Català"
  },
  {
    "language": "Croatian",
    "culture": "hr",
    "localizedName": "Hrvatski"
  },
  {
    "language": "Czech",
    "culture": "cs",
    "localizedName": "čeština"
  },
  {
    "language": "Danish",
    "culture": "da",
    "localizedName": "Dansk"
  },
  {
    "language": "Dutch",
    "culture": "nl",
    "localizedName": "Nederlands"
  },
  {
    "language": "English",
    "culture": "en",
    "localizedName": "English",
    "cultureFormats": [
      {
        "name": "US",
        "localizedName": "US",
        "format": "us"
      },
      {
        "name": "Great Britain",
        "localizedName": "Great Britain",
        "format": "gb"
      },
      {
        "name": "Australia",
        "localizedName": "Australia",
        "format": "au"
      },
      {
        "name": "Canada",
        "localizedName": "Canada",
        "format": "ca"
      }
    ]
  },
  {
    "language": "Estonian",
    "culture": "et",
    "localizedName": "Eesti"
  },
  {
    "language": "Finnish",
    "culture": "fi",
    "localizedName": "Suomi"
  },
  {
    "language": "French",
    "culture": "fr",
    "localizedName": "Français",
    "cultureFormats": [
      {
        "name": "France",
        "localizedName": "France",
        "format": "fr"
      },
      {
        "name": "Switzerland",
        "localizedName": "Suisse",
        "format": "ch"
      }
    ]
  },
  {
    "language": "Greek",
    "culture": "el",
    "localizedName": "Ελλάδα"
  },
  {
    "language": "German",
    "culture": "de",
    "localizedName": "Deutsch",
    "cultureFormats": [
      {
        "name": "Germany",
        "localizedName": "Deutschland",
        "format": "de"
      },
      {
        "name": "Switzerland",
        "localizedName": "Schweiz",
        "format": "ch"
      }
    ]
  },
  {
    "language": "Hebrew",
    "culture": "he",
    "localizedName": "עברית"
  },
  {
    "language": "Hungarian",
    "culture": "hu",
    "localizedName": "Magyar"
  },
  {
    "language": "Indonesian",
    "culture": "id",
    "localizedName": "Bahasa Indonesia"
  },
  {
    "language": "Italian",
    "culture": "it",
    "localizedName": "Italiano",
    "cultureFormats": [
      {
        "name": "Italy",
        "localizedName": "Italia",
        "format": "it"
      },
      {
        "name": "Switzerland",
        "localizedName": "Svizzera",
        "format": "ch"
      }
    ]
  },
  {
    "language": "Japanese",
    "culture": "ja",
    "localizedName": "日本語"
  },
  {
    "language": "Korean",
    "culture": "ko",
    "localizedName": "한국어"
  },
  {
    "language": "Latvian",
    "culture": "lv",
    "localizedName": "Latviešu"
  },
  {
    "language": "Lithuanian",
    "culture": "lt",
    "localizedName": "Lietuvių"
  },
  {
    "language": "Norwegian",
    "culture": "nb",
    "localizedName": "Norsk"
  },
  {
    "language": "Polish",
    "culture": "pl",
    "localizedName": "Polski"
  },
  {
    "language": "Portuguese (Brazil)",
    "culture": "pt-BR",
    "localizedName": "Português (Brasil)"
  },
  {
    "language": "Portuguese (Portugal)",
    "culture": "pt-PT",
    "localizedName": "Português (Portugal)"
  },
  {
    "language": "Romanian",
    "culture": "ro",
    "localizedName": "Română"
  },
  {
    "language": "Russian",
    "culture": "ru",
    "localizedName": "Русский"
  },
  {
    "language": "Serbian",
    "culture": "sr",
    "localizedName": "Srpski"
  },
  {
    "language": "Slovenian",
    "culture": "sl",
    "localizedName": "Slovenščina"
  },
  {
    "language": "Slovak",
    "culture": "sk",
    "localizedName": "Slovenčina"
  },
  {
    "language": "Spanish",
    "culture": "es",
    "localizedName": "Español",
    "cultureFormats": [
      {
        "name": "Spain",
        "localizedName": "España",
        "format": "es"
      },
      {
        "name": "Mexico",
        "localizedName": "México",
        "format": "mx"
      }
    ]
  },
  {
    "language": "Swedish",
    "culture": "sv",
    "localizedName": "Svenska"
  },
  {
    "language": "Thai",
    "culture": "th",
    "localizedName": "ไทย"
  },
  {
    "language": "Traditional Chinese (Hong Kong)",
    "culture": "zh-HK",
    "localizedName": "繁體中文(香港)"
  },
  {
    "language": "Traditional Chinese (Taiwan)",
    "culture": "zh-TW",
    "localizedName": "繁體中文(台灣)"
  },
  {
    "language": "Ukrainian",
    "culture": "uk",
    "localizedName": "Україна"
  },
  {
    "language": "Turkish",
    "culture": "tr",
    "localizedName": "Türkçe"
  },
  {
    "language": "Vietnamese",
    "culture": "vi",
    "localizedName": "Tiếng Việt"
  }
]

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.