GET api/Account/GetAppLanguages
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of AppLanguageInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Language | string |
None. |
|
| ShortName | string |
None. |
|
| Active | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"Language": "sample string 2",
"ShortName": "sample string 3",
"Active": true
},
{
"ID": 1,
"Language": "sample string 2",
"ShortName": "sample string 3",
"Active": true
}
]
application/xml, text/xml
Sample:
<ArrayOfAccountController.AppLanguageInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AbsoluteHealth.API.Controllers">
<AccountController.AppLanguageInfo>
<Active>true</Active>
<ID>1</ID>
<Language>sample string 2</Language>
<ShortName>sample string 3</ShortName>
</AccountController.AppLanguageInfo>
<AccountController.AppLanguageInfo>
<Active>true</Active>
<ID>1</ID>
<Language>sample string 2</Language>
<ShortName>sample string 3</ShortName>
</AccountController.AppLanguageInfo>
</ArrayOfAccountController.AppLanguageInfo>