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"
}
PropertyTypeContractDescription

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"
        }
    ]
}
PropertyTypeContractDescription

Languages

array of Language

required

The supported languages.

Language

PropertyTypeContractDescription

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": ""
}
PropertyTypeContractDescription

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"
            }
        }
    ]
}
PropertyTypeContractDescription

LanguageTexts

required

Texts in the specified languages.

Language texts

PropertyTypeContractDescription

LanguageCode

string

required

Language-culture code of the Language.

Texts

number

required

Texts in the specified language by their keys.

Last updated