-
- Translation help networkKudoZOther terminology resourcesLearn more: About terminology at ProZ.com
-
-
GET: /codes/countryProZ.com uses the ISO 3166-1 alpha-2 standard which defines 2-character country codes. Parameters
Example requestcurl -H "Authorization: Bearer {OAUTH2_ACCESS_TOKEN}" /codes/country?codes=cc,il,nc,us
Response{
"countries": [
{
"country_code": "cc",
"country_name": "Cocos (Keeling) Isl."
},
{
"country_code": "il",
"country_name": "Israel"
},
{
"country_code": "nc",
"country_name": "New Caledonia"
},
{
"country_code": "us",
"country_name": "United States"
}
]
}
|