PUT api/content/v4/getapplanguages
Request Information
URI Parameters
None.
Body Parameters
AppLanguageRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| UniqueId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"UniqueId": "adb0e811-ca61-454d-9130-2f3e29c4b7af"
}
application/xml, text/xml
Sample:
<AppLanguageRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model"> <UniqueId>adb0e811-ca61-454d-9130-2f3e29c4b7af</UniqueId> </AppLanguageRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APICommonWrapperOfListOfLanguageResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | HttpStatusCode |
None. |
|
| Message | string |
None. |
|
| Data | Collection of LanguageResponse |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 100,
"Message": "sample string 1",
"Data": [
{
"LanguageId": 1,
"LanguageName": "sample string 2",
"LanguageCode": "sample string 3",
"Icon": "sample string 4",
"Selected": true
},
{
"LanguageId": 1,
"LanguageName": "sample string 2",
"LanguageCode": "sample string 3",
"Icon": "sample string 4",
"Selected": true
}
]
}
application/xml, text/xml
Sample:
<APICommonWrapperOfArrayOfLanguageResponseZdSfSp5S xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
<Data>
<LanguageResponse>
<Icon>sample string 4</Icon>
<LanguageCode>sample string 3</LanguageCode>
<LanguageId>1</LanguageId>
<LanguageName>sample string 2</LanguageName>
<Selected>true</Selected>
</LanguageResponse>
<LanguageResponse>
<Icon>sample string 4</Icon>
<LanguageCode>sample string 3</LanguageCode>
<LanguageId>1</LanguageId>
<LanguageName>sample string 2</LanguageName>
<Selected>true</Selected>
</LanguageResponse>
</Data>
<Message>sample string 1</Message>
<Status>Continue</Status>
</APICommonWrapperOfArrayOfLanguageResponseZdSfSp5S>