POST SystemLanguage
Request Information
URI Parameters
None.
Body Parameters
ParaAppVersionName | Description | Type | Additional information |
---|---|---|---|
DeviceType | string |
None. |
|
AppVersion | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "DeviceType": "sample string 1", "AppVersion": "sample string 2" }
application/xml, text/xml
Sample:
<ParaAppVersion xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models"> <AppVersion>sample string 2</AppVersion> <DeviceType>sample string 1</DeviceType> </ParaAppVersion>
Response Information
Resource Description
Collection of ResultSystemLanguageName | Description | Type | Additional information |
---|---|---|---|
SystemLanguageId | integer |
None. |
|
LanguageName | string |
None. |
|
LanguageCode | string |
None. |
|
Available | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[ { "SystemLanguageId": 1, "LanguageName": "sample string 2", "LanguageCode": "sample string 3", "Available": true }, { "SystemLanguageId": 1, "LanguageName": "sample string 2", "LanguageCode": "sample string 3", "Available": true } ]
application/xml, text/xml
Sample:
<ArrayOfResultSystemLanguage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models"> <ResultSystemLanguage> <Available>true</Available> <LanguageCode>sample string 3</LanguageCode> <LanguageName>sample string 2</LanguageName> <SystemLanguageId>1</SystemLanguageId> </ResultSystemLanguage> <ResultSystemLanguage> <Available>true</Available> <LanguageCode>sample string 3</LanguageCode> <LanguageName>sample string 2</LanguageName> <SystemLanguageId>1</SystemLanguageId> </ResultSystemLanguage> </ArrayOfResultSystemLanguage>