POST api/applanguage/update
Request Information
URI Parameters
None.
Body Parameters
AppLanguage| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
|
| LanguageName | string |
None. |
|
| Code | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"RowGuid": "a4afb970-2031-4af9-ac08-49dc4e5ed434",
"LanguageName": "sample string 3",
"Code": "sample string 4"
}
application/xml, text/xml
Sample:
<AppLanguage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models"> <Code>sample string 4</Code> <Id>1</Id> <LanguageName>sample string 3</LanguageName> <RowGuid>a4afb970-2031-4af9-ac08-49dc4e5ed434</RowGuid> </AppLanguage>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
AppLanguageDisplay| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
|
| LanguageName | string |
None. |
|
| Code | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"RowGuid": "b958fadb-79f1-4403-a1b9-ff0067937abd",
"LanguageName": "sample string 3",
"Code": "sample string 4"
}
application/xml, text/xml
Sample:
<AppLanguageDisplay xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models"> <Code>sample string 4</Code> <Id>1</Id> <LanguageName>sample string 3</LanguageName> <RowGuid>b958fadb-79f1-4403-a1b9-ff0067937abd</RowGuid> </AppLanguageDisplay>