Languages
Get all languages
Returns all languages supported by the API.
Request
[PlatformAddress]/api/connector/v1/languages/getAll
{
"ClientToken": "E0D439EE522F44368DC78E1BFB03710C-D24FB11DBE31D4621C4817E028D9E1D",
"AccessToken": "C66EF7B239D24632943D115EDE9CB810-EA00F8FD8294692C940F6B5A8F9453D",
"Client": "Sample Client 1.0.0"
}
ClientToken
string
required
Token identifying the client application.
AccessToken
string
required
Access token of the client application.
Client
string
required
Name and version of the client application.
Response
{
"Languages": [
{
"Code": "zh-CN",
"EnglishName": "Chinese (Simplified)",
"FallbackLanguageCode": "en-US",
"LocalName": "中文"
},
{
"Code": "cs-CZ",
"EnglishName": "Czech",
"FallbackLanguageCode": "en-US",
"LocalName": "Čeština"
}
]
}
Language
Code
string
required
Language-culture code of the language.
FallbackLanguageCode
string
optional
Language-culture code of the fallback language.
EnglishName
string
required
English name of the language.
LocalName
string
required
Local name of the language.
Get language texts
Returns translations of texts in the specified languages.
Request
[PlatformAddress]/api/connector/v1/languages/getTexts
{
"ClientToken": "E0D439EE522F44368DC78E1BFB03710C-D24FB11DBE31D4621C4817E028D9E1D",
"AccessToken": "C66EF7B239D24632943D115EDE9CB810-EA00F8FD8294692C940F6B5A8F9453D",
"Client": "Sample Client 1.0.0",
"LanguageCodes": [
"en-US",
"cs-CZ"
],
"Scope": ""
}
ClientToken
string
required
Token identifying the client application.
AccessToken
string
required
Access token of the client application.
Client
string
required
Name and version of the client application.
LanguageCodes
array of string
required
Language-culture codes of the Languages
whose texts to return.
Scope
string
required
Scope of texts to return.
Response
{
"LanguageTexts": [
{
"LanguageCode": "en-US",
"Texts": {
"Address": "Address",
"AddressLine1": "Address line 1",
"AddressLine2": "Address line 2",
"AdultPlural": "Adults",
"Apartment": "Apartment",
"ApartmentPlural": "Apartments"
}
}
]
}
Language texts
LanguageCode
string
required
Language-culture code of the Language
.
Last updated
Was this helpful?