GET v1/Common/SupportedLanguages
Gets all Supported Languages.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
A list.
Collection of SupportedLanguageV1Name | Description | Type | Additional information |
---|---|---|---|
LanguageId |
The Language Id. |
integer |
None. |
LocaleSpecificDescription |
The Locale Specific Description. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "LanguageId": 1, "LocaleSpecificDescription": "sample string 2" }, { "LanguageId": 1, "LocaleSpecificDescription": "sample string 2" } ]
application/xml, text/xml
Sample:
<ArrayOfSupportedLanguage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Titan.API.Core.Models.Common"> <SupportedLanguage> <LanguageId>1</LanguageId> <LocaleSpecificDescription>sample string 2</LocaleSpecificDescription> </SupportedLanguage> <SupportedLanguage> <LanguageId>1</LanguageId> <LocaleSpecificDescription>sample string 2</LocaleSpecificDescription> </SupportedLanguage> </ArrayOfSupportedLanguage>