POST api/applanguage/update

Request Information

URI Parameters

None.

Body Parameters

AppLanguage
NameDescriptionTypeAdditional 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": "c2973d14-5bf4-4f09-b44f-8959c24c99ef",
  "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>c2973d14-5bf4-4f09-b44f-8959c24c99ef</RowGuid>
</AppLanguage>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

AppLanguageDisplay
NameDescriptionTypeAdditional 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": "4f9a3e45-97d8-4a4e-8f83-8707d48c2e50",
  "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>4f9a3e45-97d8-4a4e-8f83-8707d48c2e50</RowGuid>
</AppLanguageDisplay>