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": "772ae5c3-4207-4da3-97a0-9af3a7da72bd",
  "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>772ae5c3-4207-4da3-97a0-9af3a7da72bd</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": "3c068cce-cc98-4f45-9c56-b0f2afeaa6e4",
  "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>3c068cce-cc98-4f45-9c56-b0f2afeaa6e4</RowGuid>
</AppLanguageDisplay>